*{
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 20px;
    background-color: #f5f5f5;
    font-family: Arial, sans-serif;
    color: #333;
}

.header {
    /* margin-bottom: 20px; */
    text-align: center;
    color: #2c3e50;
    font-size: 2.5em;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}



.data {
    background-color: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.make-req {
    grid-column: 1 / -1;
    padding: 30px;
    text-align: center;
    /* background-color: #dc3545; */
}

.make-req-header{
    font-weight: bold;
    margin-bottom: 10px;
    color: #5a5959;
    font-size: x-large;
}

.data p {
    font-weight: bold;
    margin-bottom: 10px;
    color: #5a5959;
}

span {
    color: #007bff;
    /* Blue color for numbers */
    font-weight: bold;
    font-size: 1.2em;
}

.dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 90px;
    border-radius: 80px;
    margin: 0 40px;
    /* background-color: #4b63b818; */
}

button {
    padding: 10px 20px;
    margin: 5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

#success_request {
    background-color: #28a745;
    color: white;
}

#internal_server_error_request {
    background-color: #dc3545;
    /* Red */
    color: white;
}

#not_found_error {
    background-color: #ffc107;
    /* Yellow */
    color: black;
}

button:hover {
    opacity: 0.8;
    /* Slight fade on hover */
}

#errors {
    color: #dc3545;
    /* Red for errors */
}

#warnings {
    color: #ffc107;
    /* Yellow for warnings */
}

#infos {
    color: #28a745;
}

@media (max-width: 768px) {
    .dashboard {
        grid-template-columns: 1fr;
        /* 1 column on mobile */
    }
}