/* wwwroot/css/site.css */

html {
    font-size: 14px;
}

body {
    background: #f5f7fb;
    font-family: Arial, Helvetica, sans-serif;
}

/* Navbar */

.navbar {
    background: linear-gradient(90deg, #00b894, #00cec9);
    padding: 14px 20px;
}

.navbar-brand {
    color: white !important;
    font-size: 28px;
    font-weight: bold;
}

.nav-link {
    color: white !important;
    font-size: 18px;
    margin-left: 10px;
    transition: 0.3s;
}

    .nav-link:hover {
        color: yellow !important;
        transform: scale(1.05);
    }

/* Card sản phẩm */

.card {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    transition: 0.3s;
    background: white;
}

    .card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

    .card img {
        height: 240px;
        object-fit: cover;
    }

    /* Tên sản phẩm */

    .card h5 {
        font-size: 22px;
        font-weight: bold;
        margin-top: 10px;
    }

/* Giá */

.text-danger {
    font-size: 22px;
}

/* Button */

.btn-success {
    background: #00b894;
    border: none;
    border-radius: 12px;
    padding: 10px;
    font-size: 16px;
    transition: 0.3s;
}

    .btn-success:hover {
        background: #019875;
        transform: scale(1.03);
    }

.btn-danger {
    border-radius: 10px;
}

.btn-warning {
    border-radius: 10px;
}

/* Tiêu đề */

h1 {
    font-weight: bold;
    color: #2d3436;
}

/* Table */

.table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
}

.table-dark {
    background: #00b894 !important;
}

/* Footer */

footer {
    margin-top: 50px;
    padding: 20px;
    background: white;
    text-align: center;
}

/* Button */

.btn {
    border-radius: 12px;
    font-weight: bold;
    padding: 10px;
    font-size: 14px;
    white-space: nowrap;
}

.btn-success {
    background: #00b894;
    border: none;
}

    .btn-success:hover {
        background: #019875;
    }

.btn-danger {
    background: #e63946;
    border: none;
}

    .btn-danger:hover {
        background: #c1121f;
    }

.btn {
    border-radius: 10px;
    font-size: 14px;
    font-weight: bold;
    padding: 10px;
}