/* styles.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* Globaler Hintergrund */
body {
    background-color: #f2f2f2;
	font-family: 'Inter', sans-serif;
  	font-style: normal;
}

/* Schaltflächen */

/* Navbar */
.navbar-brand img {
    border-radius: 50%;
}

.navbar-nav .nav-link {
    font-size: 1em;
}

/* Dropdown-Menü */
.dropdown-menu {
    min-width: 200px;
}

/* Modale Header */
.modal-header {
    background-color: #0d6efd;
    color: white;
}

.modal-header .btn-close {
    color: white;
    opacity: 1;
}

/* Formularfelder */
.form-control:focus {
    border-color: #0d6efd;
    box-shadow: none;
}

/* Badges */
.badge {
    font-size: 0.9em;
}

/* Entferne fette Schriften */
h1, h2, h3, h4, h5, h6, .fw-bold {
    font-weight: normal !important;
}

/* styles.css */

/* styles.css */

/* Zentrierter Text innerhalb der Abwesenheits-Cards */
.profile-card {
    text-align: center;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background-color: #f9f9f9;
}

/* Icons in den Buttons */
.btn i {
    margin-right: 5px;
}

/* Anpassung der Abwesenheits-Card */
.card.shadow-sm.p-3 {
    background-color: #fff;
}

/* Status-Indikatoren */
.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-indicator i {
    margin-right: 5px;
}

/* Responsive Anpassungen */
@media (max-width: 767px) {
    .profile-card {
        margin-bottom: 15px;
    }
}

/* Pulsierende Effekte */
@-webkit-keyframes pulse-blue {
    0% {
        box-shadow: 0 0 10px rgba(0, 0, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 0, 255, 0.5);
    }
    100% {
        box-shadow: 0 0 10px rgba(0, 0, 255, 0.3);
    }
}

@keyframes pulse-blue {
    0% {
        box-shadow: 0 0 10px rgba(0, 0, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 0, 255, 0.5);
    }
    100% {
        box-shadow: 0 0 10px rgba(0, 0, 255, 0.3);
    }
}

.card-due-today {
    border: 2px solid #007bff;
    animation: pulse-blue 1.5s infinite;
    -webkit-animation: pulse-blue 1.5s infinite;
}

@-webkit-keyframes pulse-yellow {
    0% {
        box-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 193, 7, 0.5);
    }
    100% {
        box-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
    }
}

@keyframes pulse-yellow {
    0% {
        box-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 193, 7, 0.5);
    }
    100% {
        box-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
    }
}

.card-overdue {
    border: 2px solid #ffc107;
    animation: pulse-yellow 1.5s infinite;
    -webkit-animation: pulse-yellow 1.5s infinite;
}