:root {
    --primary-color: #07235b;
    --secondary-color: #30bffd;
    --accent-color: #edeff1;
}

.blog-btn {
    background-color: var(--primary-color);
}

.mobile-style-8 ul li.active a {
    color: var(--secondary-color);
}

.mobile-style-8 ul li a::after {
    background-color: var(--secondary-color);
}

.blog-profile-box .profile-box-list li a {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.home-section .home-box .overlay {
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(0,0,0,.09),
        rgba(0,0,0,.05)
    );
}
.header-style-5 .header-left .header-title {
    color: var(--primary-color);
}
.header-style-5 .header-right a {
    color: var(--primary-color);
}

.cart-list li .cart-box {
    background-color: var(--accent-color);
}

.cart-list li .cart-box .product-content h5.name {
    color: var(--primary-color);
}

/* modal keramba */
/* Overlay latar belakang modal */
.modal-overlay {
    display: none; /* Tersembunyi secara default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

/* Kotak Modal */
.modal-content {
    background-color: #fff;
    width: 90%;
    max-width: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    animation: fadeIn 0.3s ease-out;
}

/* Header Modal */
.modal-header {
    padding: 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.modal-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}
.close-btn {
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

/* Isi/Body Modal */
.modal-body {
    padding: 20px;
    text-align: center;
}
.product-preview img {
    width: 120px;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}
.product-info h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
    color: #2b3a61;
}
.product-info p {
    margin: 5px 0;
    font-size: 14px;
    color: #666;
}
.product-price {
    color: #ffc107; /* Menyesuaikan warna emas di template kamu */
    font-size: 16px;
}

/* Footer Modal */
.modal-footer {
    padding: 10px 15px;
    border-top: 1px solid #eee;
    text-align: right;
}
.btn-close-action {
    background-color: #f1f1f1;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    color: #333;
}

/* Animasi Muncul */
@keyframes fadeIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
/* end modal keramba */

/* ===============================   start Coordinator Styles  ===============================*/
/* coordinator-satellite.css */

.coordinator-header {
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    color: white;
    border-radius: 0 0 24px 24px;
    margin-bottom: 16px;
}

.coordinator-header h5,
.coordinator-header p {
    color: white;
}

.coordinator-header .text-muted {
    color: rgba(255,255,255,0.7) !important;
}

.btn-add-float {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    backdrop-filter: blur(4px);
    text-decoration: none;
    transition: background 0.2s;
}

.btn-add-float:hover {
    background: rgba(255,255,255,0.3);
    color: white;
}

.search-input {
    border-radius: 12px;
    border: none;
    background: rgba(255,255,255,0.95);
    height: 44px;
    font-size: 14px;
}

.search-input:focus {
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.search-icon {
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: #999;
    z-index: 1;
}

/* Summary strip */
.summary-strip { margin-top: -8px; }

.summary-chip {
    display: flex;
    align-items: center;
    gap: 5px;
    background: white;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 12px;
    color: #555;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.chip-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: inline-block;
}

/* Cage Card */
.cage-card {
    background: white;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    border: 1px solid #f0f0f0;
    transition: transform 0.15s, box-shadow 0.15s;
}

.cage-card:active {
    transform: scale(0.99);
}

.cage-name {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
}

.cage-parent {
    font-size: 12px;
}

.cage-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.dot-active  { background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,0.15); }
.dot-inactive { background: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,0.15); }

.status-toggle {
    border: none;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    cursor: pointer;
    flex-shrink: 0;
}

.toggle-active   { background: #dcfce7; color: #16a34a; }
.toggle-inactive { background: #fee2e2; color: #dc2626; }

/* Info row */
.cage-info-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #f5f5f5;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #666;
}

/* Action pills */
.action-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.15s;
}

.action-pill:active { opacity: 0.8; }

.action-pill-primary  { background: #1a73e8; color: white; }
.action-pill-secondary { background: #f1f5f9; color: #475569; }
.action-pill-ghost    { background: #f8f8f8; color: #666; padding: 8px 12px; }

.action-pill-primary:hover  { color: white; }
.action-pill-secondary:hover { color: #475569; }

/* Load more */
.btn-load-more {
    background: none;
    border: 1.5px solid #1a73e8;
    color: #1a73e8;
    border-radius: 12px;
    padding: 10px 32px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-load-more:hover {
    background: #1a73e8;
    color: white;
}

/* Spin animation */
@keyframes spin { to { transform: rotate(360deg); } }
.spin { animation: spin 1s linear infinite; }
/* ================================  end Coordinator Styles ====================================*/