/* YBT Packer Service Styles */
:root {
    --ybt-green: #228B22;
    --ybt-gold: #DAA520;
    --ybt-dark-green: #006400;
    --ybt-light-gold: #F0E68C;
}

.ybt-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.ybt-navbar {
    background: linear-gradient(135deg, var(--ybt-green), var(--ybt-gold)) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
}

body {
    padding-top: 76px;
}

.ybt-navbar .navbar-brand {
    color: white !important;
    font-weight: bold;
    font-size: 1.5rem;
}

.ybt-navbar .nav-link {
    color: rgba(255,255,255,0.9) !important;
    padding: 8px 15px;
    margin: 0 5px;
    border-radius: 6px;
    transition: all 0.3s;
    font-weight: 500;
}

.ybt-navbar .nav-link:hover,
.ybt-navbar .nav-link.active {
    background: rgba(255,255,255,0.2) !important;
    color: white !important;
    transform: translateY(-1px);
}

.ybt-navbar .dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 1050;
    position: absolute;
    right: 0;
    left: auto;
    min-width: 160px;
}

.ybt-navbar .dropdown-item {
    padding: 8px 16px;
    color: #333;
    text-decoration: none;
    display: block;
    clear: both;
    font-weight: normal;
    line-height: 1.42857143;
    white-space: nowrap;
}

.ybt-navbar .dropdown-item:hover {
    background-color: #f5f5f5;
    color: #262626;
}

.ybt-navbar .dropdown-toggle::after {
    margin-left: 0.5em;
}

.ybt-navbar .navbar-toggler {
    border-color: rgba(255,255,255,0.3);
}

.ybt-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.ybt-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    overflow: hidden;
}

.ybt-card-header {
    background: linear-gradient(135deg, var(--ybt-green), var(--ybt-gold));
    color: white;
    padding: 20px;
    border: none;
}

.ybt-btn-primary {
    background: var(--ybt-green);
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    transition: all 0.3s;
}

.ybt-btn-primary:hover {
    background: var(--ybt-dark-green);
    transform: translateY(-2px);
}

.ybt-btn-gold {
    background: var(--ybt-gold);
    border: none;
    color: white;
    border-radius: 8px;
    padding: 10px 20px;
    transition: all 0.3s;
}

.ybt-btn-gold:hover {
    background: #B8860B;
    color: white;
    transform: translateY(-2px);
}

.ybt-stats-card {
    background: linear-gradient(135deg, var(--ybt-green), var(--ybt-gold));
    color: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin-bottom: 20px;
}

.ybt-stats-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.ybt-table {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.ybt-table thead {
    background: var(--ybt-green);
    color: white;
}

.ybt-table tbody tr:hover {
    background: rgba(34, 139, 34, 0.1);
}

.ybt-badge-not-received {
    background: #dc3545;
}

.ybt-badge-received {
    background: var(--ybt-gold);
}

.ybt-badge-packed {
    background: #17a2b8;
}

.ybt-badge-completed {
    background: var(--ybt-green);
}

.ybt-image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
    margin: 15px 0;
}

.ybt-image-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.ybt-image-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.ybt-quick-guide {
    background: var(--ybt-light-gold);
    border-left: 5px solid var(--ybt-gold);
    padding: 20px;
    border-radius: 0 10px 10px 0;
    margin: 20px 0;
}

.ybt-tracking-input {
    border: 2px solid var(--ybt-green);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.ybt-tracking-input:focus {
    border-color: var(--ybt-gold);
    box-shadow: 0 0 0 0.2rem rgba(218, 165, 32, 0.25);
}

.ybt-folder {
    background: #f8f9fa;
    border: 2px dashed var(--ybt-green);
    border-radius: 10px;
    padding: 20px;
    margin: 15px 0;
    cursor: pointer;
    transition: all 0.3s;
}

.ybt-folder:hover {
    background: rgba(34, 139, 34, 0.1);
    border-style: solid;
}

.ybt-folder-header {
    display: flex;
    justify-content: between;
    align-items: center;
    font-weight: bold;
    color: var(--ybt-green);
}

.ybt-anonymous-card {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 20px;
    margin: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.ybt-partial-tracking {
    font-family: monospace;
    font-size: 1.2rem;
    color: var(--ybt-green);
    font-weight: bold;
}

/* Hide WordPress elements */
#wpadminbar {
    display: none !important;
}

html {
    margin-top: 0 !important;
}

body {
    margin-top: 0 !important;
}

.site-header,
.main-navigation,
.wp-block-navigation,
header.entry-header {
    display: none !important;
}

@media (max-width: 768px) {
    .ybt-sidebar {
        min-height: auto;
        margin-bottom: 20px;
    }
    
    .ybt-stats-number {
        font-size: 2rem;
    }
    
    .ybt-image-gallery {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
}
.ybt-chat-icon {
    font-size: 32px;
    line-height: 1;
    display: block;
    pointer-events: none;
}
