/*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;
}*/


/* Base font and colors for a corporate look */
html {
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    color: #333; /* Neutral text color */
    background-color: #f8f9fa; /* Light background */
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

/* Buttons with a professional appearance */
.btn {
    background-color: #0056b3; /* Corporate blue */
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

    .btn:hover {
        background-color: #004494; /* Darker blue on hover */
    }

    .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;
    }

/* Header styling */
header {
    background-color: #0056b3;
    color: white;
    padding: 15px 20px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Footer styling */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 20px;
    position: absolute;
    bottom: 0;
    width: 100%;
    font-size: 0.9rem;
}

/* Form controls */
.form-control {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
    font-size: 1rem;
}

    .form-control:focus {
        border-color: #0056b3;
        box-shadow: 0 0 5px rgba(0, 86, 179, 0.5);
    }

/* Corporate table styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 1rem;
    text-align: left;
}

    table th, table td {
        border: 1px solid #ddd;
        padding: 10px;
    }

    table th {
        background-color: #0056b3; /* Corporate blue */
        color: black; /* Jasny kolor tekstu dla kontrastu */
        font-weight: bold;
    }

    table tr:nth-child(even) {
        background-color: #f2f2f2;
    }

/* Links */
a {
    color: #0056b3;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

/* Body margin for footer spacing */
body {
    margin-bottom: 80px; /* Increased for footer */
}
