

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a0aec0;
}


:root {
    --primary: #008953;
    --secondary: #00d084;
    --tertiary: #7bdcb5;
}

.outage-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
}

.left-section {
    flex: 1 1 700px;
    min-width: 0;
}

.card-stack {
    display: block;
    width: 100%;
    margin-top: 2rem;
}

.custom-card {
    width: 100% !important;
    margin-bottom: 1.5rem;
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    border: 1px solid #eef0f2;
}

.custom-card i {
    font-style: italic;
    color: var(--secondary);
    font-weight: 500;
}

.custom-card ul, .custom-card ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.custom-card ul {
    list-style-type: disc;
}

.custom-card ol {
    list-style-type: decimal;
}

.custom-card li {
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

.card-header {
    background-color: var(--primary);
    color: white;
    padding: 1.25rem 1.5rem;
    font-weight: bold;
    border-bottom: 4px solid var(--tertiary);
}

.card-body {
    padding: 1.5rem;
}

.sidebar-section {
    flex: 0 1 350px;
    min-width: 300px;
}

.img-container {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 4px solid white;
    margin-bottom: 2rem;
}

.img-container img {
    width: 100%;
    height: auto;
    display: block;
}