/* Status Message Template Styles */
body {
    font-family: 'Assistant', sans-serif;
    background-color: #F5F8FA;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 500px;
    text-align: center;
    margin: 20px;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #212529;
}

.logo {
    max-width: 200px;
    margin-bottom: 30px;
    padding-top: 20px;
}

.icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.icon.success {
    color: #28a745;
}

.icon.error {
    color: #dc3545;
}

.icon.warning {
    color: #ffc107;
}

.icon.info {
    color: #17a2b8;
}

.icon.default {
    color: #FF7A59;
}

h1 {
    color: #191c20;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 20px;
}

.message {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.button {
    background-color: var(--button-color, #FF7A59);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
    margin: 5px;
}

.button:hover {
    opacity: 0.9;
}

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

.button.secondary:hover {
    background-color: #5a6268;
}

.info {
    background-color: #f8f9fa;
    border-left: 4px solid var(--button-color, #FF7A59);
    padding: 15px;
    margin-top: 20px;
    text-align: left;
    border-radius: 0 5px 5px 0;
}

.info p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.info ul {
    margin: 10px 0;
    padding-left: 20px;
}

.info li {
    margin: 5px 0;
    font-size: 14px;
    color: #666;
}
