/* Player Inquiries Page Styles */

.inquiries-page {
    padding: var(--space-2xl);
    max-width: 1200px;
    margin: 0 auto;
}

.inquiries-header {
    margin-bottom: var(--space-2xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-lg);
}

.inquiries-title {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin: 0;
}

.inquiries-controls {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.sort-dropdown {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.sort-label {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--text-secondary);
    white-space: nowrap;
}

.sort-select {
    padding: 0.5rem 1rem !important;
    border: 1px solid var(--border-primary) !important;
    border-radius: 8px !important;
    background: transparent !important;
    color: var(--text-primary) !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    appearance: none !important;
    padding-right: 2rem !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23CBD5E1' d='M6 9L1 4h10z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 0.75rem center !important;
}

.sort-select:hover {
    border-color: var(--color-primary-green) !important;
    background-color: rgba(124, 179, 66, 0.1) !important;
}

.sort-select:focus {
    outline: none !important;
    border-color: var(--color-primary-green) !important;
    background-color: rgba(124, 179, 66, 0.15) !important;
    box-shadow: none !important;
}

.sort-select option {
    background: var(--bg-tertiary) !important;
    color: var(--text-primary) !important;
}

/* Empty State */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-3xl) var(--space-2xl);
    text-align: center;

    border-radius: var(--radius-xl);
    border: 1px solid var(--border-secondary);
}

.empty-state-icon {
    font-size: var(--font-size-5xl);
    color: var(--color-primary-green);
    margin-bottom: var(--space-lg);
    opacity: 0.7;
}

.empty-state-title {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.empty-state-description {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    max-width: 400px;
}

/* Inquiries List */
.inquiries-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Inquiry Card */
.inquiry-card {
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-primary);
    transition: all var(--transition-base);
    cursor: pointer;
    position: relative;
    user-select: none;
    display: flex;
    flex-direction: column;
}

/* Inquiries Tabs - Matching Players Page Style */
.inquiries-tabs {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    padding: var(--space-lg) 0;
}

.inquiries-tabs .tab-header {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    background: linear-gradient(135deg, #0f172a 0%, #0b1320 100%);
    border: 1px solid rgba(93, 106, 133, 0.4);
    border-radius: 24px;
    padding: 0.85rem 1.25rem;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
        border-radius: var(--radius-xl);
    padding: var(--space-xl);
}

.inquiries-tabs .tab-button {
    border: 1px solid transparent;
    background: transparent;
    color: #cbd5e1;
    padding: 0.9rem 1.7rem;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    text-align: center;
    line-height: 1.15;
    cursor: pointer;
    transition: all var(--transition-base);
    letter-spacing: -0.01em;
    position: relative;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
        padding: var(--space-sm) var(--space-xl);
    border-radius: var(--radius-lg);
}

.inquiries-tabs .tab-button i {
    font-size: 1.05rem;
    color: currentColor;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.inquiries-tabs .tab-button:hover {
    color: var(--text-primary);
    border-color: rgba(148, 163, 184, 0.25);
    background: rgba(30, 41, 59, 0.35);
}

.inquiries-tabs .tab-button.active {
    background: linear-gradient(135deg, #10a6eb 0%, #0680c7 100%);
    border-color: transparent;
    box-shadow: 0 12px 26px rgba(14, 165, 233, 0.32), 0 4px 14px rgba(0, 0, 0, 0.28);
    color: white;
}

.tab-label-en {
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
}

.tab-label-ar {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    direction: rtl;
}

.tab-panels {
    margin-top: var(--space-lg);
}

.tab-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .inquiries-tabs .tab-header {
        flex-direction: column;
    }

    .inquiries-tabs .tab-button {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .inquiries-tabs .tab-header {
        flex-direction: column;
    }

    .inquiries-tabs .tab-button {
        width: 100%;
    }
}

.inquiry-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary-green);
}

.inquiry-card:active {
    transform: translateY(-2px);
}

.inquiry-card-image {
    width: 100%;
    height: 254px;
    object-fit: cover;
    object-position: top;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(124, 179, 66, 0.1) 100%);
    position: relative;
}

.inquiry-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(15, 20, 25, 0.9), transparent);
}

.inquiry-card-content {
    padding: var(--space-xl);
}

.inquiry-card-header {
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-md);
}

.inquiry-player-details {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: var(--space-xs);
}

.inquiry-sender-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.5rem 0.75rem;
    background: rgba(14, 165, 233, 0.08);
    border-radius: 6px;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.sender-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.sender-details {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.sender-name {
    font-size: 0.875rem;
    color: var(--text-primary);
    font-weight: 600;
}

.sender-type {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    background: rgba(14, 165, 233, 0.15);
    color: var(--color-primary-blue);
    font-weight: 600;
}

.badge-soft-primary {
    background: rgba(14, 165, 233, 0.15);
    color: var(--color-primary-blue);
}

.inquiry-player-name {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    margin: 0;
}

.inquiry-date {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.inquiry-card-footer {
    margin-top: auto;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border-secondary);
}

.inquiry-action-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    border: none;
    background: var(--gradient-button-green);
    color: white;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    width: 100%;
    justify-content: center;
}

.inquiry-action-btn:hover {
    background: var(--gradient-button-green-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.badge-danger {
    background-color: #EF4444;
    color: white;
}

/* ============================================
   THREAD PAGE - NEW DESIGN
   ============================================ */

.thread-page {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 70px);
    background: var(--bg-primary);
    overflow: hidden;
}

/* Thread Header Card */
.thread-header-card {
    background: var(--bg-secondary);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-secondary);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.thread-back-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    text-decoration: none;
    border-radius: var(--radius-md);
}

.thread-back-btn:hover {
    background: rgba(14, 165, 233, 0.1);
    color: var(--color-primary-green);
}

.thread-player-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: transform 0.2s ease;
    flex: 1;
}

.thread-player-card:hover {
    transform: translateX(4px);
}

[dir="rtl"] .thread-player-card:hover {
    transform: translateX(-4px);
}

.thread-player-avatar {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    object-fit: cover;
    border: 2px solid var(--color-primary-green);
    flex-shrink: 0;
}

.thread-player-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.thread-player-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.thread-player-date {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Interest Sender Info */
.interest-sender-info {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    padding: 0.75rem 1.25rem;
    background: rgba(14, 165, 233, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.interest-sender-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.interest-sender-details {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.interest-sender-details:hover {
    transform: translateX(2px);
}

[dir="rtl"] .interest-sender-details:hover {
    transform: translateX(-2px);
}

.interest-sender-details:hover .interest-sender-name {
    color: var(--color-primary-green);
}

.interest-sender-details:hover .interest-sender-badge {
    background: rgba(14, 165, 233, 0.25);
}

.interest-sender-name {
    font-size: 0.9375rem;
    color: var(--text-primary);
    font-weight: 600;
}

.interest-sender-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.625rem;
    border-radius: 4px;
    background: rgba(14, 165, 233, 0.15);
    color: var(--color-primary-blue);
    font-weight: 600;
    text-transform: lowercase;
}



/* Messages Area */
.thread-messages-area {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: var(--bg-primary);
}

.thread-message {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 65%;
    animation: messageSlideIn 0.3s ease;
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.thread-message--user {
    align-self: flex-end;
    align-items: flex-end;
}

.thread-message--admin {
    align-self: flex-start;
    align-items: flex-start;
}

.thread-message-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    padding: 0 0.5rem;
}

.thread-message-sender {
    font-weight: 600;
}

.thread-message-time {
    font-size: 0.75rem;
    opacity: 0.8;
}

.thread-message-bubble {
    padding: 0.875rem 1.125rem;
    border-radius: 12px;
    line-height: 1.5;
    word-wrap: break-word;
    font-size: 0.9375rem;
}

.thread-message-attachment {
    margin-top: 0.5rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.thread-message-attachment i {
    font-size: 1.25rem;
    color: var(--color-primary-blue);
}

.thread-message-attachment-name {
    flex: 1;
    font-size: 0.875rem;
    color: var(--text-primary);
    font-weight: 500;
}

.thread-message-attachment-download {
    background: rgba(124, 179, 66, 0.15);
    border: none;
    color: var(--color-primary-green);
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8125rem;
    font-weight: 600;
    transition: all 0.2s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.thread-message-attachment-download:hover {
    background: rgba(124, 179, 66, 0.25);
}

.thread-message--user .thread-message-bubble {
    background: var(--color-primary-green);
    color: white;
    border-bottom-right-radius: 4px;
}

.thread-message--admin .thread-message-bubble {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-secondary);
    border-bottom-left-radius: 4px;
}

/* Message Input Area */
.thread-input-area {
    padding: 1.25rem 2rem;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-secondary);
    flex-shrink: 0;
}

.thread-message-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* File Preview */
.file-preview {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 8px;
    animation: slideDown 0.2s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.file-preview-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.file-preview-content i {
    font-size: 1.25rem;
    color: var(--color-primary-blue);
}

.file-preview-name {
    flex: 1;
    font-size: 0.875rem;
    color: var(--text-primary);
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-preview-remove {
    background: rgba(239, 68, 68, 0.1);
    border: none;
    color: #EF4444;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.file-preview-remove:hover {
    background: rgba(239, 68, 68, 0.2);
}

.file-preview-remove i {
    font-size: 1.125rem;
}

.thread-input-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-secondary);
    border-radius: 12px;
    padding: 0.5rem;
    transition: border-color 0.2s ease;
}

.thread-input-wrapper:focus-within {
    border-color: var(--color-primary-green);
    box-shadow: 0 0 0 3px rgba(124, 179, 66, 0.1);
}

.thread-message-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.9375rem;
    padding: 0.5rem 0.75rem;
    outline: none;
}

.thread-message-input::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

.thread-attach-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 1.125rem;
    position: relative;
}

.thread-attach-btn:hover {
    background: rgba(14, 165, 233, 0.1);
    color: var(--color-primary-blue);
}

.thread-attach-btn.has-file {
    background: rgba(124, 179, 66, 0.15);
    color: var(--color-primary-green);
}

.thread-attach-btn.has-file::after {
    content: '';
    position: absolute;
    top: 6px;
    right: 6px;
    width: 8px;
    height: 8px;
    background: var(--color-primary-green);
    border-radius: 50%;
    border: 2px solid var(--bg-primary);
}

.thread-send-btn {
    background: var(--gradient-button-green);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.625rem 1.25rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.thread-send-btn:hover {
    background: var(--gradient-button-green-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(124, 179, 66, 0.3);
}

.thread-send-btn:active {
    transform: translateY(0);
}

.thread-send-btn i {
    font-size: 1rem;
}

/* Thread Page - RTL Support */

[dir="rtl"] .thread-message--user {
    align-self: flex-start;
    align-items: flex-start;
}

[dir="rtl"] .thread-message--admin {
    align-self: flex-end;
    align-items: flex-end;
}

[dir="rtl"] .thread-message--user .thread-message-bubble {
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 4px;
}

[dir="rtl"] .thread-message--admin .thread-message-bubble {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 4px;
}

[dir="rtl"] .thread-message-header {
    flex-direction: row-reverse;
}

[dir="rtl"] .thread-input-wrapper {
    flex-direction: row-reverse;
}

[dir="rtl"] .interest-sender-details {
    flex-direction: row-reverse;
}

/* Thread Page - Responsive */
@media (max-width: 768px) {
    .inquiries-page {
        padding: var(--space-lg);
    }

    .inquiries-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .inquiries-controls {
        width: 100%;
        justify-content: flex-end;
    }

    .inquiries-list {
        grid-template-columns: 1fr;
    }

    .inquiry-card-image {
        height: 240px;
    }

    .thread-header-card {
        flex-wrap: wrap;
        padding: 1rem;
        gap: 1rem;
    }

    .thread-player-avatar {
        width: 48px;
        height: 48px;
    }

    .thread-player-name {
        font-size: 1rem;
    }

    .interest-sender-info {
        width: 100%;
    }

    .thread-message {
        max-width: 85%;
    }

    .thread-messages-area {
        padding: 1rem;
    }

    .thread-input-area {
        padding: 1rem;
    }

    .thread-send-btn span {
        display: none;
    }

    .thread-send-btn {
        padding: 0.625rem;
    }
}

/* View Toggles */
.view-toggle {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 0.25rem;
    border: 1px solid var(--border-secondary);
}

.view-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.view-btn:hover {
    color: var(--text-primary);
}

.view-btn.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-primary-green);
}

/* Grid View (Default) */
.inquiries-list.view-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* List View */
.inquiries-list.view-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.inquiries-list.view-list .inquiry-card {
    flex-direction: row;
    align-items: center;
    padding: 0.75rem;
    gap: 1.5rem;
    height: auto;
}

.inquiries-list.view-list .inquiry-card-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    flex-shrink: 0;
}

.inquiries-list.view-list .inquiry-card-image::after {
    display: none;
}

.inquiries-list.view-list .inquiry-card-content {
    padding: 0;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.inquiries-list.view-list .inquiry-card-header {
    margin-bottom: 0;
    flex: 1;
}

.inquiries-list.view-list .inquiry-card-footer {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    width: auto;
}

.inquiries-list.view-list .inquiry-action-btn {
    width: auto;
    padding: 0.5rem 1rem;
}

/* Responsive adjustments for list view */
@media (max-width: 768px) {
    .inquiries-list.view-list .inquiry-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }

    .inquiries-list.view-list .inquiry-card-image {
        width: 60px;
        height: 60px;
        margin-bottom: 0.5rem;
    }

    .inquiries-list.view-list .inquiry-card-content {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 1rem;
    }

    .inquiries-list.view-list .inquiry-card-footer {
        width: 100%;
    }

    .inquiries-list.view-list .inquiry-action-btn {
        width: 100%;
    }
}

/* Responsive Styles for Inquiries Grid View */
@media (max-width: 768px) {
    .inquiries-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .inquiries-controls {
        width: 100%;
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .sort-dropdown {
        width: 100%;
    }

    .sort-select {
        flex: 1;
    }

    /* Card adjustments */
    .inquiry-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .inquiry-player-details {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .inquiry-sender-info {
        width: 100%;
    }

    .sender-details {
        width: 100%;
    }

    .inquiry-date {
        width: 100%;
        margin-top: 0.5rem;
    }

    .inquiry-action-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .inquiries-page {
        padding: 1rem;
    }

    .inquiry-card-image {
        height: 200px;
    }
}
