/* General Styles */
body {
    background-color: #f8f9fa;
}

/* Card Styles */
.card {
    border: none;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

/* Button Styles */
.btn-primary {
    background-color: #4e73df;
    border-color: #4e73df;
}

.btn-primary:hover {
    background-color: #2e59d9;
    border-color: #2e59d9;
}

/* Dashboard Styles */
.dashboard-stats {
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.dashboard-stats i {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* Product Card */
.product-card {
    height: 100%;
}

.product-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Login/Register Forms */
.auth-form {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.sidebar {
    min-height: 100vh;
    background: #343a40;
}

.sidebar .nav-link {
    color: rgba(255,255,255,.8);
    padding: 1rem;
}

.sidebar .nav-link:hover,
.sidebar .nav-link.active {
    color: #fff;
    background: rgba(255,255,255,.1);
}

.sidebar .nav-link i {
    margin-right: 0.5rem;
}

.main-content {
    padding-top: 2rem;
}

#loader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
}