﻿/*==============================
      GENERAL
===============================*/

body {
    background: #f5f7fa;
    font-family: "Segoe UI", Tahoma, Arial, sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
}

/*==============================
      NAVBAR
===============================*/

.navbar {
    border: none !important;
    box-shadow: 0 4px 15px rgba(0,0,0,.15);
}

.navbar-brand {
    font-size: 28px !important;
    font-weight: bold;
}

.navbar-nav > li > a {
    font-size: 16px;
    font-weight: bold;
    transition: .3s;
    border-radius: 8px;
}

    .navbar-nav > li > a:hover {
        background: rgba(255,255,255,.15) !important;
    }

/*==============================
      BUTTONS
===============================*/

.btn {
    border-radius: 25px;
    transition: .3s;
    font-weight: bold;
}

    .btn:hover {
        transform: translateY(-2px);
    }

/*==============================
      PANELS
===============================*/

.panel {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 5px 18px rgba(0,0,0,.10);
}

.panel-heading {
    font-weight: bold;
    font-size: 18px;
}

/*==============================
      TABLES
===============================*/

.table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
}

    .table th {
        background: #198754;
        color: white;
        text-align: center;
    }

    .table td {
        text-align: center;
        vertical-align: middle !important;
    }

/*==============================
      FORMS
===============================*/

.form-control {
    border-radius: 12px;
    height: 45px;
}

textarea.form-control {
    height: auto;
}

/*==============================
      FOOTER
===============================*/

footer {
    margin-top: 40px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0,0,0,.15);
}

/*==============================
      RESPONSIVE
===============================*/

@media(max-width:768px) {

    .navbar-brand {
        font-size: 22px !important;
    }

    .table {
        font-size: 13px;
    }
}
.cart-badge {
    background: #ffc107;
    color: #0b5d1e;
    padding: 3px 8px;
    border-radius: 50%;
    font-weight: bold;
    margin-right: 5px;
    font-size: 13px;
}
