/*
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}
*/
/* Navbar css */
/*
.prefix {
    font-size: 30px;
    font-weight: 700;
    font-style: italic;
    color: darkblue;
}

.suffix {
    font-size: 30px;
    font-weight: 700;
    font-style: italic;
    color: rgb(4, 165, 4);
}

li a {
    font-weight: 600;
}
*/
.container {
    /*margin: 20px auto;*/
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 60%;
    min-width: 300px;
    margin-right: auto;
    margin-left: auto;
}

/*
h1 {
    font-size: 24px;
    margin-bottom: 20px;
}
*/

.details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.label {
    flex-basis: 30%;
    font-weight: bold;
}

.value {
    flex-basis: 70%;
}

@media (max-width: 600px) {
    .details {
        flex-direction: column;
    }

    .label,
    .value {
        flex-basis: auto;
    }
}