/*
Theme Name: Twenty Twenty-Four Child - 10 Minute Mail
Description: Child theme for 10 Minute Mail
Template: twentytwentyfour
Version: 1.0
*/

@import url("../twentytwentyfour/style.css");

/* Custom Styles for 10 Minute Mail */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    /* background: #f8f9fa; */
    background: #4f4f50;
    margin: 0;
    padding: 0;
}

.wp-block-post-title {
    color: white;
    margin-block-start: 0rem;
}

.wp-block-navigation-item__label {
    font-weight: bold;
    background: #059669;
    color: white;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    margin: 0.5rem 0;
    display: inline-block;
    text-decoration: none;
    transition: all 0.2s;
}

.wp-block-navigation-item__label:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.wp-block-site-tagline {
    color: white;
}

.site-header {
    background: #059669;
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.has-contrast-2-color.has-text-color.has-link-color.has-small-font-size {
    display:none;
}

.temp-email-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.email-display {
    font-size: 24px;
    font-weight: bold;
    color: #2563eb;
    background: #eff6ff;
    padding: 15px;
    border-radius: 6px;
    margin: 20px 0;
    word-break: break-all;
}

.timer-display {
    font-size: 20px;
    font-weight: bold;
    color: #dc2626;
    text-align: center;
    margin: 15px 0;
}

.action-buttons {
    text-align: center;
    gap: 10px;
    margin: 20px 0;
}

.btn {
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-secondary {
    background: #6b7280;
    color: white;
}

.btn-success {
    background: #059669;
    color: white;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.inbox-container {
    margin-top: 30px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
}

.inbox-header {
    background: #f3f4f6;
    padding: 15px;
    font-weight: bold;
    border-bottom: 1px solid #e5e7eb;
}

.message-item {
    padding: 15px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.message-item.unread {
    background: #fef3c7;
    font-weight: bold;
}

.message-actions {
    display: flex;
    gap: 10px;
}

.banner-space {
    margin: 20px 0;
    text-align: center;
}

@media (max-width: 768px) {
    .temp-email-container {
        margin: 10px;
        padding: 15px;
    }
    
    .email-display {
        font-size: 18px;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}