.nerodyti {display:none!important;}
/* B2B skydelio išdėstymas: stulpeliai su 30px tarpu */
.b2b-dashboard-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Kortelės konteineris – kortelės išsidėsto eilėmis ir prisitaiko prie pločio */
.dashboard-info-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Viena informacinė kortelė – balta, su lengvu šešėliu ir užapvalintais kampais */
.dashboard-info-cards .info-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    flex: 1 1 280px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Kortelės antraštė */


/* Kortelės tekstas */
.dashboard-info-cards .info-card p {
    margin: 4px 0;
    font-size: 14px;
    color: #495057;
}

/* Mygtukui pridedame viršutinį tarpą */


/* Užsakymų sekcijos antraštė */
.dashboard-orders-section h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
    color: #212529;
}

/* Lentelės rėmas – šviesiai pilkas rėmelis su apvaliais kampais */
.dashboard-orders-table {
    border: 1px solid #e9ecef;
    border-radius: 6px;
    overflow: hidden;
    font-size: 14px;
    width: 100%;
}

/* Lentelės antraštės stilius – šviesiai pilkas fonas ir paryškintas tekstas */
.dashboard-orders-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    padding: 10px 12px;
    text-align: left;
    font-size: 13px;
    border-bottom: 1px solid #e9ecef;
    color: #212529;
}

/* Lentelės duomenų eilutės */
.dashboard-orders-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #f1f3f5;
    color: #343a40;
}

/* Paskutinės eilutės apačia be border */
.dashboard-orders-table tr:last-child td {
    border-bottom: none;
}

/* Mygtukas „Peržiūrėti visus“ šiek tiek atitrauktas nuo lentelės */
.dashboard-orders-section .button.secondary {
    margin-top: 10px;
}
/* Bluejuice Admin Offers Styling */
.wrap {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
}

/* Pagrindinė lentelės stilizacija */
.wp-list-table.widefat {
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.wp-list-table.widefat thead th,
.wp-list-table.widefat tfoot td {
    background: linear-gradient(135deg, #e5175b, #c4124d);
    color: white;
    border: none;
    padding: 15px 10px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.wp-list-table.widefat tbody td {
    padding: 12px 10px;
    border-bottom: 1px solid #f0f0f1;
    vertical-align: middle;
}

.wp-list-table.widefat tbody tr:hover {
    background-color: #fafafa;
}

.wp-list-table.widefat tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.wp-list-table.widefat tbody tr:nth-child(even):hover {
    background-color: #f5f5f5;
}

/* Statusų stiliai */
.offer-status-active {
    background: #d4edda;
    color: #155724;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.offer-status-used {
    background: #e2e3e5;
    color: #383d41;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.offer-status-expired {
    background: #f8d7da;
    color: #721c24;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

/* Mygtukų stiliai */
.button {
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.button-primary {
    background: linear-gradient(135deg, #e5175b, #c4124d);
    color: white;
    border: none;
}

.button-primary:hover {
    background: linear-gradient(135deg, #c4124d, #a30e40);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(229, 23, 91, 0.3);
}

.view-offer-btn {
    background: #e5175b;
    color: white;
    border: none;
}

.view-offer-btn:hover {
    background: #c4124d;
    color: white;
}

.delete-offer-btn {
    background: #dc3545;
    color: white;
    border: none;
}

.delete-offer-btn:hover {
    background: #c82333;
    color: white;
}

/* Formų elementai */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #2c3338;
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group input[type="date"],
.form-group select {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #e5175b;
    outline: none;
    box-shadow: 0 0 0 2px rgba(229, 23, 91, 0.2);
}

/* Select2 pritaikymas */
.select2-container--default .select2-selection--single {
    border: 1px solid #ddd;
    border-radius: 4px;
    height: 38px;
}

.select2-container--default .select2-selection--single:focus {
    border-color: #e5175b;
    outline: none;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #2c3338;
    line-height: 38px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 36px;
}

/* Krepšelio lentelė */
#cart-items-table {
    margin: 20px 0;
}

#cart-items-table th {
    background: linear-gradient(135deg, #e5175b, #c4124d);
    color: white;
}

#empty-cart-message {
    color: #666;
    font-style: italic;
}

/* Nuolaidų sekcija */
.discount-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid #e5175b;
}

.discount-section .form-group {
    margin-bottom: 15px;
}

/* Suvestinė */
.offer-totals {
    border: 2px solid #e5175b;
    border-radius: 6px;
}

.offer-totals table {
    border: none;
}

.offer-totals td {
    border: none;
    padding: 8px 0;
}

.offer-totals tr:last-child {
    border-top: 2px solid #e1e1e1;
    padding-top: 10px;
}

/* Pranešimai */
#create-offer-message {
    font-style: italic;
}

/* Atnaujinimo žinutės */
.notice {
    border-radius: 6px;
    border-left: 4px solid #e5175b;
}

/* Responsive dizainas */
@media (max-width: 768px) {
    .wp-list-table.widefat {
        font-size: 14px;
    }
    
    .wp-list-table.widefat thead th,
    .wp-list-table.widefat tfoot td {
        padding: 10px 5px;
        font-size: 11px;
    }
    
    .button {
        padding: 6px 12px;
        font-size: 13px;
        margin-bottom: 5px;
    }
}

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

.wp-list-table.widefat tbody tr {
    animation: fadeIn 0.3s ease;
}

/* Pagrindinio konteinerio stilizacija */
#offer-builder {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

/* Sekcijų atskyrimas */
.offer-form h2 {
    color: #e5175b;
    border-bottom: 2px solid #e5175b;
    padding-bottom: 10px;
    margin: 30px 0 20px 0;
    font-weight: 600;
}

.offer-form h2:first-child {
    margin-top: 0;
}

/* Customer info box */
#customer-info {
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    background: #f8f9fa;
}

#customer-info h4 {
    color: #e5175b;
    margin-top: 0;
}

/* Krepšelio prekių eilutės */
.cart-item-row {
    transition: background-color 0.3s ease;
}

.cart-item-row:hover {
    background-color: #f8f9fa;
}

/* Mygtukų grupės */
.button-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}




/* ============================
   B2B DASHBOARD – INFO CARD STYLE (FIGMA)
   ============================ */
.dashboard-title {padding-bottom:17px}
/* Kortelių fonas */
.dashboard-info-cards .info-card {
    background: #F6F5F7 !important;
    border: none !important;
    border-radius: 14px !important;
    padding: 28px !important;
	padding-bottom:50px!important;
    position: relative;
    font-family: "URW Geometric", sans-serif;
}

/* Antraštės su ikonų burbuliukais */
.dashboard-info-cards .info-card h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "COCOGOOSE", sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #372747;
    margin-bottom: 18px;
}

/* Ikonų bendras stilius (baltas apskritimas 40x40) */
.info-card .card-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-card .card-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;

}

/* Lentelės kairioji teksto dalis */
.dashboard-info-cards .info-card p strong {
    font-family: "URW Geometric", sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #372747;
}

/* Lentelės reikšmės */
.dashboard-info-cards .info-card p {
    font-family: "URW Geometric", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #372747;
    margin: 6px 0;
}

/* Redaguoti / Daugiau info nuoroda */
.dashboard-info-cards .info-card .button, .dashboard-info-cards .info-card .button2 {
    position: absolute;
    background: none !important;
    padding: 0 !important;
	bottom:15px;
    font-family: "URW Geometric", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #372747 !important;
    text-decoration: underline !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
		text-transform:none!important;
	padding-bottom:15px;

}

/* Piestuko ikona */
.info-card .button::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url('../assets/20x20px piestukas.svg');
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
	margin-top: 15px;
}
.MyAccount-dashboard-buttons {display:none;}
/* Orders Page Styles */
.bj-orders-page {
    padding: 20px 0;
}

.bj-orders-header {
    margin-bottom: 30px;
}

.bj-orders-header h1 {
    margin: 0;
    font-family: "COCOGOOSE", sans-serif !important;
    font-weight: 400 !important;
    font-size: 28px !important;
    line-height: 100% !important;
    color: #372747 !important;
    text-transform: none !important;
}

.bj-orders-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 14px;
}

.bj-orders-table thead th {
    font-family: "URW Geometric", sans-serif;
    font-weight: 700;
    font-size: 15px;
    line-height: 16px;
    color: #372747;
    text-transform: none;
    padding-bottom: 10px;
    border-bottom: none;
}

.bj-orders-table tbody tr {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 0 0 1px #eee;
}

.bj-orders-table tbody td {
    padding: 12px 8px;
    vertical-align: middle;
    font-family: "URW Geometric", sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 22px;
    color: #372747;
    text-transform: none;
    border-bottom: none;
}

.bj-orders-table .price-column {
    text-align: right;
}

.bj-no-orders {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 14px;
    box-shadow: 0 0 0 1px #eee;
    font-family: "URW Geometric", sans-serif;
    color: #372747;
}

/* Status badge */
.bj-order-status {
    display: inline-block;
    padding: 4px 10px;
    font-weight: 600;
    border-radius: 6px;
    font-size: 14px;
    background: none !important;
}

.status-processing { border: 2px solid #FF9D00; color: #FF9D00; }
.status-completed  { border: 2px solid #6DB33F; color: #6DB33F; }
.status-hold       { border: 2px solid #BDBDBD; color: #545454; }
.status-pending    { border: 2px solid #BDBDBD; color: #333; }
.status-cancelled  { border: 2px solid #ff4444; color: #ff4444; }
.status-refunded   { border: 2px solid #888; color: #888; }
.status-failed     { border: 2px solid #ff4444; color: #ff4444; }

/* Puslapiavimas */
.bj-orders-pagination {
    margin-top: 30px;
    text-align: center;
}

.bj-orders-pagination .page-numbers {
    display: inline-flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
}

.bj-orders-pagination .page-numbers li {
    margin: 0;
}

.bj-orders-pagination .page-numbers a,
.bj-orders-pagination .page-numbers span {
    display: block;
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-decoration: none;
    color: #372747;
    font-family: "URW Geometric", sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

.bj-orders-pagination .page-numbers a:hover {
    background: #372747;
    color: white;
    border-color: #372747;
}

.bj-orders-pagination .page-numbers .current {
    background: #372747;
    color: white;
    border-color: #372747;
}

/* Responsive */
@media (max-width: 768px) {
    .bj-orders-table {
        font-size: 14px;
    }
    
    .bj-orders-table th,
    .bj-orders-table td {
        padding: 8px 6px;
    }
    
    .bj-orders-header h1 {
        font-size: 24px !important;
    }
}

