/*
 *  Stylesheet for Support Page
 */

.support-container {
    max-width: 800px;
    margin: 60px auto;
    padding: 40px;
    border: 1px solid var(--border-light);
    background-color: #121212;
    clip-path: polygon(25px 0, 100% 0, 100% calc(100% - 25px), calc(100% - 25px) 100%, 0 100%, 0 25px);
}

.support-header {
    text-align: center;
    margin-bottom: 40px;
}

.support-header h1 {
    font-size: 36px;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.support-header p {
    font-size: 18px;
    color: var(--text-muted);
}

.support-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.styled-select {
    padding: 12px 15px;
    background-color: var(--background-dark);
    color: var(--text-light);
    border: 1px solid var(--border-green);
    font-family: 'Roboto Mono', monospace;
    font-size: 16px;
    cursor: pointer;
    -webkit-appearance: none; /* Removes default styling */
    -moz-appearance: none;
    appearance: none;
    /* Custom arrow */
    background-image: url("data:image/svg+xml;charset=UTF8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2300ff9b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 1.2em;
}

.styled-select:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(0, 255, 155, 0.5);
}

.subject-info {
    padding: 20px;
    background-color: rgba(0, 255, 155, 0.05);
    border-left: 3px solid var(--primary-green);
    color: var(--text-muted);
}

.subject-info p {
    margin: 0;
}

.subject-info .subject-text {
    color: var(--text-light);
    font-style: italic;
    margin-top: 5px;
}

.contact-action {
    text-align: center;
    margin-top: 20px;
}

/* Reusing the .btn class from your main style.css */
.contact-action .btn {
    display: inline-block; /* Good practice for anchor tags styled as buttons */
    text-align: center;
}