/* Global Setup */
body {
    font-family: 'Source Sans Pro', sans-serif;
    background-color: #fcfcfc;
    color: #5a5a5a;
    margin: 0;
}

header {
    font-family: 'Montserrat', sans-serif;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.logo-box {
    background-color: #bebebe;
    color: white;
    padding: 12px;
    font-weight: bold;
    width: 140px;
    text-align: center;
    text-decoration: none;
    display: block;
}

/* Layout */
.main-container {
    max-width: 1400px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    min-height: 100vh;
}

.sidebar {
    background-color: #f6f6f6;
    padding: 2rem;
}

/* UI Elements */
.banner {
    background-color: #f6f6f6;
    padding: 40px 10%;
    border-bottom: 1px solid #eee;
}

.product-card {
    background: white;
    padding: 1.5rem;
    border-radius: 4px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.btn-buy {
    background-color: #d0cfcf;
    color: white;
    padding: 10px;
    width: 100%;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

.btn-buy:hover {
    background-color: #929292;
}

.btn-admin {
    background-color: #3b82f6;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
}

/* Table styles */
table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 12px;
    border-bottom: 1px solid #eee;
    text-align: left;
}