@charset "UTF-8"; 
.core-error-container {
    /*max-width: 800px;*/
    margin: 50px auto;
    padding: 40px;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.core-error-code {
    font-size: 8rem;
    font-weight: bold;
    color: #e74c3c;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1;
}

.core-error-message {
    font-size: 2rem;
    color: #2c3e50;
    margin: 20px 0 10px 0;
    font-weight: 600;
}

.core-error-description {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin: 0 0 30px 0;
    line-height: 1.6;
}

.core-error-exception {
    background: #111; /*#f8f9fa;*/
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
    text-align: left;
    font-family: 'Fira Code', 'Consolas', 'Monaco', monospace;
    font-size: 0.9rem;
    color: #56ff00; /*#495057;*/
	
    overflow-x: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
}

span.core-error-label {
	font-weight:bold;
	color: white;
}

.home-button {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.home-button:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

/* Responsive design */
@media (max-width: 768px) {
    .core-error-container {
		max-width: 600px;
        margin: 20px;
        padding: 30px 20px;
    }
    
    .core-error-code {
        font-size: 6rem;
    }
    
    .core-error-message {
        font-size: 1.5rem;
    }
    
    .core-error-exception {
        padding: 15px;
        font-size: 0.8rem;
    }
}

/* Animation for error code */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.core-error-code {
    animation: pulse 2s ease-in-out infinite;
}

/* Additional styling for different error types */
.core-error-container.error-404 .error-code {
    color: #e74c3c; /* Red for 404 */
}

.core-error-container.error-500 .error-code {
    color: #f39c12; /* Orange for 500 */
}

.core-error-container.error-403 .error-code {
    color: #9b59b6; /* Purple for 403 */
}