/* Main styles */
body {
    background-color: #f8f9fa;
}

a{
    text-decoration: none;
}

.card {
    transition: transform 0.2s;
    margin-bottom: 20px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-main-image {
    max-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
}

.product-main-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cursor-pointer {
    cursor: pointer;
}

/* Admin styles */
.admin-sidebar {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
}

.admin-sidebar .nav-link {
    color: #495057;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 5px;
}

.admin-sidebar .nav-link:hover {
    background-color: #e9ecef;
}

.admin-sidebar .nav-link.active {
    background-color: #0d6efd;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card {
        margin-bottom: 15px;
    }
}