.flexnet-account-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    background: #f8f9fa;
    padding: 6px;
    border-radius: 12px;
    width: fit-content;
}

.account-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #6c757d;
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
}

.account-tab:hover {
    color: #212529;
    background: rgba(0, 0, 0, 0.05);
}

.account-tab.active {
    color: #fff;
    background: #000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.account-tab .dashicons {
    font-size: 20px;
}

.account-tab-content {
    display: none;
}


.quote-id-badge {
    display: inline-block;
    margin-right: 10px;
    padding: 4px 12px;
    background: #000;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 6px;
    vertical-align: middle;
}

.flexnet-my-quotes-wrapper h1,
.flexnet-coupons-wrapper h1 {
    margin: 0 0 24px 0;
    font-size: 24px;
    font-weight: 700;
    color: #212529;
}

.flexnet-no-quotes {
    text-align: center;
    padding: 80px 40px;
    background: #f8f9fa;
    border-radius: 12px;
}

.flexnet-no-quotes .dashicons {
    font-size: 64px;
    color: #dee2e6;
    margin-bottom: 16px;
}

.flexnet-no-quotes p {
    margin: 0;
    font-size: 16px;
    color: #6c757d;
}

.flexnet-quotes-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.flexnet-quote-card {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.flexnet-quote-card:hover {
    border-color: #dee2e6;
}

.flexnet-quote-card.active {
    border-color: #000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.quote-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.quote-card-header:hover {
    background-color: #f8f9fa;
}

.quote-header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.quote-summary-inline {
    display: flex;
    gap: 16px;
    font-size: 14px;
    color: #6c757d;
}

.summary-inline-item {
    font-weight: 500;
}

.accordion-toggle {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.accordion-toggle .dashicons {
    font-size: 20px;
    color: #6c757d;
    transition: color 0.2s;
}

.accordion-toggle:hover .dashicons {
    color: #000;
}

.quote-info h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 700;
    color: #212529;
}

.quote-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #6c757d;
}

.quote-date .dashicons {
    font-size: 16px;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.status-badge.status-pending {
    background: #fcf3cd;
    color: #dba617;
}

.status-badge.status-cancelled {
    background: #dc3545;
}

.status-badge.status-approved {
    background: #d5f4dd;
    color: #00a32a;
}

.status-badge.status-rejected {
    background: #f8d7da;
    color: #721c24;
}

.has-unread-message {
    position: relative;
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(34, 113, 177, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(34, 113, 177, 0);
    }
}

.new-message-indicator {
    display: inline-block;
    margin-left: 10px;
    color: #2271b1;
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

.new-message-indicator .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
}

.admin-message-box {
    background: #667eea;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    color: #fff;
}

.admin-message-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.admin-message-header .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
}

.admin-message-header strong {
    flex: 1;
    font-size: 16px;
}

.admin-message-header small {
    opacity: 0.8;
    font-size: 12px;
}

.admin-message-content {
    line-height: 1.6;
    font-size: 14px;
}

.original-price-crossed {
    text-decoration: line-through;
    color: #6c757d;
    margin-right: 8px;
    font-size: 13px;
}

.discounted-price {
    color: #00a32a;
    font-weight: 700;
    font-size: 15px;
}

.quote-coupon-info {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #e7f5fe;
    border-left: 4px solid #2271b1;
    border-radius: 4px;
    margin-bottom: 16px;
    font-size: 14px;
}

.quote-coupon-info .dashicons {
    color: #2271b1;
    font-size: 18px;
    width: 18px;
    height: 18px;
}

.coupon-code-badge {
    padding: 4px 10px;
    background: #2271b1;
    color: #fff;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-weight: 700;
    font-size: 13px;
}

.coupon-discount {
    color: #00a32a;
    font-weight: 700;
}

.item-price-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.item-price-original {
    text-decoration: line-through;
    color: #6c757d;
    font-size: 13px;
}

.item-price-discounted {
    color: #00a32a;
    font-weight: 700;
    font-size: 15px;
}

.item-quantity {
    font-size: 12px;
    color: #6c757d;
    margin-top: 4px;
}

.quote-card-body {
    padding: 20px 24px;
    border-top: 1px solid #e9ecef;
}

.accordion-content {
    overflow: hidden;
}

.flexnet-quotes-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    padding: 20px 0;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    color: #212529;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.pagination-btn:hover {
    background: #f8f9fa;
    border-color: #000;
    color: #000;
}

.pagination-btn .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

.pagination-numbers {
    display: flex;
    gap: 6px;
}

.pagination-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    color: #212529;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.pagination-number:hover {
    background: #f8f9fa;
    border-color: #000;
    color: #000;
}

.pagination-number.active {
    background: #000;
    border-color: #000;
    color: #fff;
    cursor: default;
}

.quote-message {
    background: #fff;
    padding: 16px 20px;
    border-radius: 8px;
    margin: 16px 24px 20px 24px;
    border: 1px solid #e9ecef;
}

.quote-message strong {
    display: block;
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.quote-message p {
    margin: 0;
    font-size: 14px;
    color: #212529;
    line-height: 1.6;
}

.quote-summary {
    display: flex;
    gap: 32px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f3f5;
}

.summary-item {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.summary-item .label {
    font-size: 14px;
    color: #6c757d;
}

.summary-item strong {
    font-size: 16px;
    color: #212529;
}

.quote-items-preview {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.item-image-link {
    display: block;
    transition: opacity 0.2s;
}

.item-image-link:hover {
    opacity: 0.8;
}

.item-title-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

.item-title-link:hover {
    color: #000;
}

.item-title-link:hover .item-title {
    text-decoration: underline;
}

.quote-item-preview {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
}

.quote-item-preview img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    background: #fff;
}

.quote-item-preview .item-info {
    flex: 1;
    min-width: 0;
}

.quote-item-preview .item-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 4px;
}

.quote-item-preview .item-variation {
    display: block;
    font-size: 13px;
    color: #6c757d;
}

.quote-item-preview .item-price {
    font-size: 15px;
    font-weight: 700;
    color: #000;
}

.quote-more-items {
    text-align: center;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 14px;
    color: #6c757d;
    font-weight: 600;
}

.quote-card-footer {
    padding: 16px 24px;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
}

.flexnet-view-quote-details {
    padding: 10px 20px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.flexnet-view-quote-details:hover {
    background: #333;
}

@media (max-width: 768px) {
    .quote-card-header {
        flex-direction: column;
        gap: 12px;
    }
    
    .quote-summary {
        flex-direction: column;
        gap: 12px;
    }
}
