body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 1rem;
    text-align: center;
}

.error-container {
    background: var(--header-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    max-width: 90%;
    width: 500px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.error-content {
    margin-top: 1rem;
}

.error-content p {
    margin: 0.5rem 0;
}

.meme-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
    border: 1px solid var(--border-color);
}

.error-subtitle {
    color: var(--accent-mustard);
    font-style: italic;
    margin: 1rem 0 0 0;
}

.error-container .upload-button {
    margin: 1rem 0;
}