/* Support Documentation Styles */
.support-docs {
    font-family: 'Inter', sans-serif;
}

/* Hero Section */
.docs-hero {
    background-color: #f0f7ff;
    padding: 4rem 0;
    text-align: center;
}

.docs-hero h1 {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 1rem;
}

.docs-hero p {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

/* Search Section */
.docs-search {
    padding: 2rem 0;
    text-align: center;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.search-box {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    padding: 0 1rem;
}

.search-box input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.search-box button {
    padding: 0.75rem 1.5rem;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-box button:hover {
    background: #0056b3;
}

/* No Results Message */
.no-results {
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    text-align: center;
}

.no-results h3 {
    color: #343a40;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.no-results p {
    color: #6c757d;
    margin: 0;
}

/* Search Results */
.doc-section {
    transition: all 0.3s ease;
}

.doc-section.highlight {
    animation: highlight-fade 2s ease-out;
}

@keyframes highlight-fade {
    0% {
        background-color: rgba(0, 123, 255, 0.1);
    }
    100% {
        background-color: transparent;
    }
}

/* Category Cards */
.category-card {
    transition: all 0.3s ease;
}

/* Categories Section */
.docs-categories {
    padding: 3rem 0;
    background-color: #f8fafc;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.category-card {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.category-card h2 {
    color: #2d3748;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.category-card ul {
    list-style: none;
    padding: 0;
}

.category-card li {
    margin-bottom: 0.5rem;
}

.category-card a {
    color: #4a5568;
    text-decoration: none;
    transition: color 0.2s;
    display: block;
    padding: 0.5rem 0;
}

.category-card a:hover {
    color: #2b6cb0;
}

/* Content Section */
.docs-content {
    padding: 3rem 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
}

.docs-sidebar {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.sidebar-section {
    background-color: #f8fafc;
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.sidebar-section h3 {
    color: #2d3748;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.sidebar-section ul {
    list-style: none;
    padding: 0;
}

.sidebar-section li {
    margin-bottom: 0.5rem;
}

.sidebar-section a {
    color: #4a5568;
    text-decoration: none;
    transition: color 0.2s;
    display: block;
    padding: 0.5rem 0;
}

.sidebar-section a:hover,
.sidebar-section a.active {
    color: #2b6cb0;
}

.docs-main {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.doc-section {
    margin-bottom: 3rem;
}

.doc-section h2 {
    color: #2d3748;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.doc-section h3 {
    color: #2d3748;
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.doc-section h4 {
    color: #2d3748;
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem;
}

.doc-content {
    color: #4a5568;
    line-height: 1.6;
}

.doc-content ol,
.doc-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.doc-content li {
    margin-bottom: 0.5rem;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .docs-sidebar {
        position: static;
        margin-bottom: 2rem;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .docs-hero h1 {
        font-size: 2rem;
    }

    .search-box {
        flex-direction: column;
    }

    .search-box button {
        width: 100%;
    }
}

/* Feedback Section */
.feedback-section {
    margin-top: 4rem;
    padding: 2rem;
    background-color: #f8fafc;
    border-radius: 0.5rem;
}

.feedback-section h2 {
    color: #2d3748;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feedback-section p {
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.feedback-form {
    display: grid;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.feedback-form .form-group {
    display: flex;
    flex-direction: column;
}

.feedback-form label {
    color: #2d3748;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.feedback-form select,
.feedback-form input[type="text"],
.feedback-form input[type="email"] {
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.feedback-form select:focus,
.feedback-form input[type="text"]:focus,
.feedback-form input[type="email"]:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.feedback-form textarea {
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 1rem;
    min-height: 150px;
    resize: vertical;
}

.rating-group {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
}

.rating-group input[type="radio"] {
    display: none;
}

.rating-group label {
    cursor: pointer;
    padding: 0.5rem 1rem;
    background-color: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-group input[type="radio"]:checked + label {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

.rating-group label:hover {
    background-color: #e9ecef;
}

.feedback-form button {
    padding: 0.75rem 1.5rem;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feedback-form button:hover {
    background: #0056b3;
}

@media (max-width: 768px) {
    .feedback-form {
        padding: 0 1rem;
    }

    .rating-group {
        flex-direction: column;
    }

    .rating-group label {
        width: 100%;
        justify-content: center;
    }
}

.feedback-success {
    text-align: center;
    padding: 2rem;
}

.feedback-success i {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.feedback-success h3 {
    color: #2d3748;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feedback-success p {
    color: #4a5568;
    margin-bottom: 2rem;
}

.feedback-details {
    background-color: #f8fafc;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
}

.feedback-details p {
    margin: 0;
    color: #4a5568;
}

.feedback-note {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 1rem;
}

.feedback-error {
    text-align: center;
    padding: 2rem;
    background-color: #fff3f3;
    border-radius: 0.5rem;
    margin-top: 2rem;
}

.feedback-error i {
    font-size: 3rem;
    color: #dc3545;
    margin-bottom: 1rem;
}

.feedback-error h3 {
    color: #2d3748;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feedback-error p {
    color: #4a5568;
    margin-bottom: 2rem;
}

.feedback-form button:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
} 