/* Reset i podstawowe style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #1991bf;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.container {
    width: 100%;
    max-width: 800px;
    padding: 20px;
}

.status-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.logo {
    margin-bottom: 30px;
}

.logo-img {
    max-width: 300px;
    height: auto;
}

.status-content {
    margin-bottom: 30px;
}

.status-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.status-icon-green {
    background-image: url('icon_green_filled.jpeg');
}

.status-icon-yellow {
    background-image: url('icon_yellow_filled.jpeg');
}

.status-icon-red {
    background-image: url('icon_red_filled.jpeg');
}

.status-title {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #333;
    font-weight: 300;
}

.status-message {
    font-size: 1.3em;
    margin-bottom: 45px;
    font-weight: 500;
}

.status-ok {
    color: #4CAF50;
}

.status-warning {
    color: #FF9800;
}

.status-error {
    color: #f44336;
}

.incident-details {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
    text-align: left;
    border-left: 4px solid #FF9800;
}

.incident-details h2 {
    color: #333;
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.4em;
    font-weight: bold;
}

.incident-details h3 {
    color: #333;
    margin: 20px 0 10px 0;
    font-size: 1.1em;
    font-weight: bold;
}

.incident-description {
    line-height: 1.6;
    margin-bottom: 15px;
    color: #555;
    background-color: #eee;
    padding: 15px;
    margin-top: 15px;
    border-radius: 8px;
}

.fix-date {
    font-weight: bold;
    color: #333;
    background: #e3f2fd;
    padding: 15px;
    border-radius: 8px;
    display: block;
    margin-top: 15px;
    text-align: center;
}

.contact-info {
    background: #e8f5e8;
    border-radius: 15px;
    padding: 20px;
    margin-top: 25px;
}

.contact-info p {
    margin-bottom: 10px;
    color: #555;
}

.contact-email {
    display: inline-block;
    background: #4CAF50;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.contact-email:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

/* Responsywność */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .status-card {
        padding: 25px;
    }
    
    .logo-img {
        max-width: 250px;
    }
    
    .status-title {
        font-size: 2em;
    }
    
    .status-message {
        font-size: 1.1em;
    }
    
    .incident-details {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .status-card {
        padding: 20px;
    }
    
    .logo-img {
        max-width: 200px;
    }
    
    .status-title {
        font-size: 1.8em;
    }
    
    .status-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
}
