<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Modern Card Design with Red Theme */
.design-1 {
    max-width: 1440px;
    margin: 40px 20px;
    padding: 30px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 6px;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.design-1 .header {
    text-align: center;
    margin-bottom: 40px;
}

.design-1 h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8em;
    color: #FF3333;
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
}

.design-1 .content {
    display: flex;
    /* align-items: center; */
    gap: 40px;
    padding: 20px;
}

.design-1 .show-image {
    width: 400px;
    height: 500px;
    border-radius: 6px;
    object-fit: cover;
    border: 0px solid #FF3333;
    box-shadow: 0 0 20px rgba(255, 51, 51, 0.2);
    object-fit: fill;
    display: block;
    margin: 0 auto;
}

.design-1 .show-info {
    flex: 1;
    padding: 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.design-1 h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2em;
    margin-bottom: 20px;
    color: #fff;
}

.design-1 .time-slot,
.design-1 .days {
    font-size: 1.2em;
    margin: 15px 0;
    color: #fff;
}

.design-1 strong {
    color: #FF3333;
    /* Changed to red */
    font-weight: 600;
}

.design-1 .station {
    font-size: 1.5em;
    color: #FF3333;
    /* Changed to red */
    margin-top: 30px;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(255, 51, 51, 0.3);
    /* Added red glow */
}

/* Optional: Add a subtle red gradient overlay to the background */
.dddddesign-1::before {
    content: '';
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.05), rgba(255, 51, 51, 0.1));
    border-radius: 20px;
    pointer-events: none;
}

/* Add subtle red hover effects */
.design-1 .show-image:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
    box-shadow: 0 0 30px rgba(255, 51, 51, 0.3);
}

.design-1 .description {
    margin-top: -20px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border-left: 3px solid #FF3333;
}

.design-1 .description p {
    color: #fff;
    line-height: 1.6;
    margin-bottom: 15px;
}

.design-1 .description a {
    color: #FF3333;
    text-decoration: none;
}

.design-1 .description a:hover {
    text-decoration: underline;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1440px !important;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .design-1 {
        margin: 20px;
        padding: 20px;
    }

    .design-1 .content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .design-1 .show-image {
        width: 100%;
        max-width: 300px;
        height: auto;
        margin: 0 auto;
    }

    .design-1 h1 {
        font-size: 2em;
    }

    .design-1 h2 {
        font-size: 1.6em;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .design-1 .time-slot,
    .design-1 .days {
        font-size: 1.1em;
    }

    .design-1 .description {
        padding: 15px;
        margin-top: 20px;
    }

    .design-1 .show-info {
        width: 100%;
        padding: 15px;
    }
}

/* Additional Bootstrap Overrides */
.container {
    padding: 0;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

#div_Details {
    background: #0a0000;
    padding: 2rem 0;
}

.content {
    display: flex;
    align-items: flex-start;
    /* This aligns items to the top */
}

.show-image {
    align-self: flex-start;
    /* This ensures the image stays at the top */
}

/* Optional: Add red accent for selection */</pre></body></html>