/* ticket ss */
    /* Support Ticket Section Styles */
    .support-ticket-section {
        background: #000;
        padding: 40px 0;
        font-family: 'Orbitron', sans-serif;
        color: #fff;
    }

    .support-ticket-container {
        max-width: 1440px;
        margin: auto;
        padding: 0 80px;
    }

    /* HEADER */
    .support-ticket-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 32px;
        height: 46px;
    }

    .support-ticket-title {
        font-size: 24px;
        font-weight: 600;
    }

    /* Open Ticket Button */
    .btn-open-ticket {
        background: linear-gradient(101.67deg, #93C3FD 0%, #7D86ED 45.89%, #5B63ED 100%);
        border: none;
        border-radius: 50px;
        padding: 12px 30px;
        font-weight: 600;
        color: white;
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .btn-open-ticket:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(91, 99, 237, 0.4);
        color: #000;
    }

    /* DESKTOP + TABLET TABLE */
    .support-ticket-table-wrapper {
        max-width: 1280px;
        margin: auto;
        background: #000;
        border: 1px solid #B4B1B1;
        border-radius: 16px;
        overflow-x: auto;
        min-height: 155px;
    }

    .support-ticket-table-wrapper::-webkit-scrollbar {
        display: none;
    }

    .support-ticket-table {
        min-width: 1200px;
        width: 100%;
    }

    .table-header-row {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
        padding: 20px;
        background: #404040;
        font-weight: 500;
        border-bottom: 1px solid #B4B1B1;
        border-radius: 16px 16px 0 0;
    }

    .table-body {
        background: #000;
        font-family: 'Lato', sans-serif;
    }

    .table-row {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
        padding: 1rem;
        border-bottom: 1px solid #333;
        align-items: center;
    }

    .table-row:last-child {
        border-bottom: none;
    }

    .table-cell {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
    }

    .bold {
        font-weight: 600;
        font-size: 14px;
    }

    /* Status and Priority Badges */
    .status-badge, .priority-badge {
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        display: inline-block;
        text-align: center;
    }

    .status-open {
        background: rgba(255, 107, 107, 0.2);
        color: #FF6B6B;
    }

    .status-in-progress {
        background: rgba(255, 193, 7, 0.2);
        color: #FFC107;
    }

    .status-resolved {
        background: rgba(76, 175, 80, 0.2);
        color: #4CAF50;
    }

    .priority-high {
        background: rgba(244, 67, 54, 0.2);
        color: #F44336;
    }

    .priority-medium {
        background: rgba(255, 152, 0, 0.2);
        color: #FF9800;
    }

    .priority-low {
        background: rgba(76, 175, 80, 0.2);
        color: #4CAF50;
    }

    /* Action Icons */
    .action-icons {
        display: flex;
        gap: 10px;
    }

    .action-icons .btn {
        width: 36px;
        height: 36px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: rgba(59, 59, 59, 0.8);
        border: none;
        color: #FFFFFF;
        transition: all 0.3s;
    }

    .action-icons .btn:hover {
        background: linear-gradient(101.67deg, #93C3FD 0%, #5B63ED 100%);
        transform: translateY(-2px);
    }

    /* MOBILE VIEW */
    .support-ticket-mobile {
        display: none;
    }

    .support-ticket-card {
        border: 1px solid #B4B1B1;
        border-radius: 16px;
        margin-bottom: 16px;
        background: #000;
        overflow: hidden;
    }

    .card-body {
        padding: 16px;
    }

    .info-row {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 12px 8px;
        border-bottom: 1px solid #B4B1B1;
        
    }

    .info-row:last-child {
        border-bottom: none;
    }

    .info-label {
        color: #aaa;
        font-family: Orbitron;
        font-size: 14px;
        flex: 0 0 120px;
    }

    .info-value {
        text-align: right;
        flex: 1;
        font-size: 14px;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    /* MODAL STYLES */
    .modal-content {
        width: 808px;
        max-width: 90%;
        min-height: 688px;
        border-radius: 32px !important;
        border: none;
        background: #232323;
        box-shadow: 0px 0px 8px 0px #FFFFFF70 inset;
        position: relative;
        overflow: hidden;
    }

    .modal-content::before {
        content: '';
        position: absolute;
        top: 2px;
        left: 2px;
        right: 2px;
        bottom: 2px;
        border-radius: 28px;
        background: linear-gradient(101.67deg, #93C3FD 0%, #7D86ED 45.89%, #5B63ED 100%);
        z-index: 1;
    }

    .modal-body {
        position: relative;
        z-index: 2;
        padding: 40px;
        display: flex;
        flex-direction: column;
        gap: 32px;
        background: #232323;
        border-radius: 28px;
        margin: 2px;
    }

    .modal-header, .modal-footer {
        border: none;
        background: transparent;
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
    }

    .modal-header {
        padding: 30px 40px 0;
    }

    .modal-footer {
        padding: 0 40px 30px;
        justify-content: center;
    }

    .btn-close {
        filter: invert(1) brightness(2);
        opacity: 0.8;
    }

    .modal-title {
        color: white;
        font-weight: 700;
        font-size: 28px;
    }

    .form-control, .form-select {
        background-color: #3B3B3B !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        color: white !important;
        border-radius: 12px !important;
        padding: 14px 16px !important;
        font-size: 16px;
    }

    .form-control::placeholder {
        color: rgba(255, 255, 255, 0.5) !important;
    }

    .form-control:focus, .form-select:focus {
        box-shadow: 0 0 0 3px rgba(147, 195, 253, 0.3) !important;
        border-color: #93C3FD !important;
    }

    .form-label {
        color: white;
        font-weight: 600;
        margin-bottom: 8px;
        font-size: 16px;
    }

    /* Attachment Styles */
    .attachment-header {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 10px;
    }

    .btn-add-attachment {
        background: transparent;
        border: 2px solid #93C3FD;
        color: #93C3FD;
        border-radius: 12px;
        padding: 10px 20px;
        font-weight: 600;
        font-size: 16px;
        cursor: pointer;
        transition: all 0.3s;
        display: flex;
        align-items: center;
    }

    .btn-add-attachment:hover {
        background: rgba(147, 195, 253, 0.1);
        transform: translateY(-2px);
    }

    .attachment-count {
        color: #aaa;
        font-size: 14px;
    }

    .file-upload-info {
        background: rgba(59, 59, 59, 0.6);
        border-radius: 12px;
        padding: 15px;
        color: rgba(255, 255, 255, 0.8);
        font-size: 14px;
        margin-bottom: 15px;
    }

    .file-input-container {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .file-input-wrapper {
        display: flex;
        align-items: center;
        gap: 10px;
        background: #3B3B3B;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        padding: 10px 15px;
    }

    .file-input-wrapper input[type="file"] {
        display: none;
    }

    .file-input-label {
        background: rgba(147, 195, 253, 0.2);
        border: 1px solid #93C3FD;
        border-radius: 8px;
        padding: 8px 15px;
        color: #93C3FD;
        font-weight: 600;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.3s;
        text-align: center;
        flex-shrink: 0;
    }

    .file-input-label:hover {
        background: rgba(147, 195, 253, 0.3);
    }

    .file-name {
        color: white;
        font-size: 14px;
        flex: 1;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .remove-file {
        background: transparent;
        border: none;
        color: #FF6B6B;
        font-size: 18px;
        cursor: pointer;
        padding: 0;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: all 0.3s;
    }

    .remove-file:hover {
        background: rgba(255, 107, 107, 0.2);
    }

    .selected-files {
        margin-top: 15px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .selected-file-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: rgba(59, 59, 59, 0.6);
        border-radius: 8px;
        padding: 10px 15px;
    }

    .selected-file-name {
        color: white;
        font-size: 14px;
        flex: 1;
    }

    .selected-file-size {
        color: #aaa;
        font-size: 12px;
        margin-left: 10px;
    }

    .submit-btn {
        background: linear-gradient(101.67deg, #93C3FD 0%, #7D86ED 45.89%, #5B63ED 100%);
        border: none;
        border-radius: 50px;
        padding: 15px 40px;
        font-weight: 600;
        
        color: white;
        font-size: 18px;
        transition: transform 0.3s, box-shadow 0.3s;
        width: 200px;
    }

    .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(91, 99, 237, 0.4);
        color: white;
    }

    /* RESPONSIVE BREAKPOINTS */
    @media (max-width: 1199.98px) {
        .support-ticket-container {
            padding: 0 32px;
        }

        .support-ticket-table-wrapper {
            margin: 0;
            max-width: 100%;
        }
    }

    @media (max-width: 991.98px) {
        .support-ticket-table-wrapper {
            overflow-x: auto;
        }

        .support-ticket-table {
            min-width: 1000px;
        }
    }

    @media (max-width: 767.98px) {
        .support-ticket-container {
            padding: 0 20px;
            /* align-items: flex-start; */
           
        }

        .support-ticket-header {
            flex-direction: column;
            gap: 16px;
            height: auto;
            margin-bottom: 24px;
            align-items: start;
        }

        .support-ticket-title {
            font-size: 20px;
            text-align: start;
            width: 100%;
        }

        .support-ticket-table-wrapper {
            display: none;
        }

        .support-ticket-mobile {
            display: block;
        }


        .modal-content {
            width: 95% !important;
            min-height: auto;
        }

        .modal-body {
            padding: 20px;
            gap: 20px;
        }

        .modal-header {
            padding: 20px 20px 0;
        }

        .modal-footer {
            padding: 0 20px 20px;
        }

        .attachment-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
        }

        .action-icons{
        display: flex;
        align-items: end;
        justify-content: end;
            
        }


    }

    @media (max-width: 575.98px) {
        .support-ticket-container {
            padding: 0 16px;
        }

        .card-body {
            padding: 12px;
        }

        .info-label {
            flex: 0 0 90px;
            font-size: 12px;
            color: #fff;
        }

        .info-value {
            font-size: 12px;
        }
    }

/* ticket e */