body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f5f5f5;
}

.container {
    text-align: center;
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    max-width: 400px;
    width: 100%;
}

.container-wide {
    max-width: 500px;
}

h1 {
    margin-top: 0;
}

h2 {
    margin-bottom: 8px;
    color: #333;
}

.form-group {
    margin-bottom: 16px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

input[type="text"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.btn {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
}

.section {
    margin-top: 30px;
    margin-bottom: 30px;
}

.section-label {
    margin-bottom: 12px;
    color: #333;
}

.section-value {
    font-size: 16px;
    color: #666;
}

.status-badge {
    display: inline-block;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: bold;
}

.last-updated {
    margin-bottom: 8px;
    color: #666;
    font-weight: normal;
}

.last-updated-value {
    font-size: 14px;
    color: #888;
}
