html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* Own Css */

/* Global Background & Font */

body {
    background-color: #f4f7f8;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333;
}

h1, h2, h3 {
    color: #1a4a46;
    font-weight: 600;
}

/* Navbar */
.navbar {
    background-color: #ffffff !important;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05) !important;
    padding: 1rem 0;
}

.navbar-brand {
    color: #1c827b !important; 
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-link {
    color: #64748b !important;
    font-weight: 500;
    transition: color 0.2s;
}

    .nav-link:hover {
        color: #1c827b !important;
    }

/* Content Cards */
.content-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    margin-bottom: 24px;
}

/* Button Links */
.btn-custom-primary {
    background-color: #1c827b;
    color: #ffffff !important;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
}

    .btn-custom-primary:hover {
        background-color: #156660;
        box-shadow: 0 4px 8px rgba(28, 130, 123, 0.2);
    }

.btn-custom-secondary {
    background-color: #ffffff;
    color: #1c827b !important;
    border: 1px solid #1c827b;
    border-radius: 8px;
    padding: 8px 16px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
}

    .btn-custom-secondary:hover {
        background-color: #f0f7f6;
    }

.btn-custom-danger {
    background-color: #e63946;
    color: #ffffff !important;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
}

    .btn-custom-danger:hover {
        background-color: #cc333f;
    }

/* Search Bar & Forms */
.search-input {
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    padding: 10px 16px;
    background-color: #f8fafc;
}

    .search-input:focus {
        outline: none;
        border-color: #1c827b;
        background-color: #ffffff;
        box-shadow: 0 0 0 3px rgba(28, 130, 123, 0.15);
    }

/* Tables */
.table-container {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #edf2f7;
    margin-top: 1rem;
}

.table thead {
    background-color: #f8fafc;
    color: #64748b;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .table thead th {
        border-bottom: 2px solid #edf2f7;
        padding: 16px;
        font-weight: 600;
    }

.table tbody td {
    padding: 16px;
    vertical-align: middle;
    border-bottom: 1px solid #edf2f7;
}

.table-actions a {
    margin-right: 6px;
    font-size: 0.9rem;
}