/* Custom styles for KasaApp */

body {
    background-color: #f8f9fa;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    border: none;
    margin-bottom: 20px;
}

.card-header {
    border-radius: 8px 8px 0 0 !important;
    border: none;
}

.btn {
    border-radius: 5px;
}

.table th {
    font-weight: 600;
    color: #495057;
}

.product-card {
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    transition: all 0.3s ease;
    padding: 10px;
}

.product-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.product-card .card-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.product-card .card-text {
    font-size: 16px;
    font-weight: 700;
}

/* Styly pro ikony produktů */
.product-icon-container {
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.product-card:hover .product-icon-container {
    transform: scale(1.1);
    background-color: #e9ecef;
}

.cart-item .product-icon-container {
    background-color: #e9ecef;
}

.cart-item {
    padding: 10px;
    border-radius: 5px;
    background-color: #f8f9fa;
    margin-bottom: 10px;
}

.cart-total {
    font-size: 18px;
    font-weight: 700;
    color: #212529;
}

.category-btn {
    margin-right: 5px;
    margin-bottom: 5px;
    border-radius: 20px;
    font-size: 14px;
}

.alert {
    border-radius: 8px;
}

/* Login and Register pages */
.auth-card {
    max-width: 400px;
    margin: 50px auto;
}

/* Receipt styles */
@media print {
    body {
        font-size: 12px;
    }

    .receipt {
        width: 80mm;
        margin: 0;
        padding: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-card {
        height: 140px;
    }

    .product-card .card-title {
        font-size: 12px;
    }

    .product-card .card-text {
        font-size: 14px;
    }

    .product-icon-container {
        margin-bottom: 5px;
    }
}
