* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background-color: #f4f4f4;
    min-height: 100vh;
}

h1, h2, h3, h4 {
    font-weight: 500;
}

strong {
    font-weight: 600;
}

#page-container {
    min-height: 100vh;
    min-height: calc(100vh - 150px);
    margin-top: 150px;
}

.small-icon {
    width: 24px;
    height: 24px;
}

.medium-icon {
    width: 32px;
    height: 32px;
}

.invert {
    filter: invert(1);
}


.center-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width:950px) {
    #page-container {
        min-height: calc(100vh - 192px);
        margin-top: 192px;
    }
}


/* BUTTON */

.bold {
    font-weight: bold;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    outline: none;
}

.button-primary {
    background-color: #007bff;
    color: white;
}

.button-black {
    background-color: #000000;
    color: white;
}


.button-primary:hover {
    background-color: #0056b3;
}

.button-secondary {
    background-color: #6c757d;
    color: white;
}

.button-secondary:hover {
    background-color: #545b62;
}

.button-success {
    background-color: #28a745;
    color: white;
}

.button-success:hover {
    background-color: #1e7e34;
}

.button-danger {
    background-color: #dc3545;
    color: white;
}

.button-danger:hover {
    background-color: #c82333;
}

.button-warning {
    background-color: #ffc107;
    color: black;
}

.button-warning:hover {
    background-color: #e0a800;
}

.button-info {
    background-color: #17a2b8;
    color: white;
}

.button-info:hover {
    background-color: #117a8b;
}

.button-sm {
    padding: 6px 12px;
    font-size: 14px;
}

.button-lg {
    padding: 14px 28px;
    font-size: 18px;
}

.button:disabled,
.button.disabled {
    background-color: #ccc;
    color: #666;
    cursor: not-allowed;
}

.button:active {
    transform: scale(0.98);
}