/* General Body Styling */
body {
    background-color: #f0f4f8;
    font-family: 'Roboto', sans-serif;
    display: flex;
    height: 100vh;
    margin: 0;
    position: relative;
}

/* Card Styling */
.card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.card-header {
    background: linear-gradient(90deg, #007bff, #6610f2);
    color: white;
    padding: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
}

.card-body {
    padding: 2rem;
}

/* Form Control Styling */
.form-control {
    border-radius: 0.5rem;
}

/* Button Custom Styling */
.btn-custom {
    background-color: #6610f2;
    color: white;
    border-radius: 0.5rem;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-custom:hover {
    background-color: #5a0fdb;
    transform: translateY(-3px);
}

/* Button Absen Styling */
.btn-absen {
    background-color: #28a745;
    color: white;
    border-radius: 0.5rem;
    margin-top: 1rem;
    transition: background-color 0.3s, transform 0.3s;
    padding: 0.75rem;
    font-size: 1.2rem;
    text-align: center;
    display: inline-block;
    width: 100%;
}

.btn-absen:hover {
    background-color: #218838;
    transform: translateY(-3px);
}

/* Sidebar Styling */
#sidebar-wrapper {
    min-height: 100vh;
    width: 250px;
    background-color: #343a40;
    position: fixed;
    transition: all 0.3s ease-in-out;
}

#sidebar-wrapper .list-group-item {
    background-color: #343a40;
    color: white;
    font-size: 1.2rem;
    padding: 1.5rem;
    border: none;
}

#sidebar-wrapper .list-group-item:hover {
    background-color: #495057;
    color: white;
}

#wrapper.toggled #sidebar-wrapper {
    margin-left: -250px;
}

#page-content-wrapper {
    width: 100%;
    padding-left: 250px;
    transition: all 0.3s ease-in-out;
}

#wrapper.toggled #page-content-wrapper {
    padding-left: 0;
}

/* Toggle Button */
#menu-toggle {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 0.75rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease-in-out;
}

#menu-toggle:hover {
    background-color: #0056b3;
}

/* Footer Styling */
.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 1rem;
    background-color: #343a40;
    color: white;
}

/* Success Button for Forms */
.btn-success {
    background-color: #28a745;
    color: white;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-success:hover {
    background-color: #218838;
    transform: translateY(-3px);
}

/* Secondary Button */
.btn-secondary {
    background-color: #6c757d;
    color: white;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-secondary:hover {
    background-color: #5a6268;
    transform: translateY(-3px);
}
