body {
    font-family: 'Hind Siliguri', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fcfcfc;
    color: #333;
    line-height: 1.6;
}

header {
    background: linear-gradient(to left, blue, rgb(70, 184, 222));
    color: white;
    padding: 30px 20px;
    text-align: center;
    margin-bottom: 20px;
}

header h1 {
    margin: 0;
    font-size: 32px;
}

header p {
    margin-top: 10px;
    opacity: 0.9;
}

.main {
    padding: 25px;
}

.container {
    display: flex;
    max-width: auto;
    margin: 0 auto;
    gap: 30px;
    align-items: flex-start;
}

.left {
    flex: 2;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    border-left: 3px solid #00008b;
}

.right {
    flex: 1;
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    border-left: 3px solid #00008b;
}

h3 {
    margin-top: 0;
    color: #00008b;
    border-bottom: 2px solid #00c3ff;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.buttons button {
    padding: 12px;
    font-size: 14px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fbfbfb;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}



.buttons button:hover {
    background: #f0f7ff;
    border-color: #00c3ff;
    transform: translateY(-3px);
}

details {
    background: #061078da;
    padding: 10px 15px;
    border-radius: 6px;
    margin-bottom: 15px;
}

details summary {
    font-weight: 700;
    cursor: pointer;
    color: #fff;
}

details p {
    margin-top: 10px;
    padding-left: 10px;
    color: #fff;
}

.news {
    margin-top: 30px;
    padding: 20px;
    background: #fbfbfb;
    border-radius: 8px;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.02);
    border: 1px solid #eee;
}

.highlight {
    color: #d10000;
    font-weight: 700;
    cursor: pointer;
    text-decoration: underline dotted;
    transition: color 0.2s;
}

.highlight:hover {
    color: #ff0000;
}

.icon {
    margin: 0 4px;
    vertical-align: middle;
    font-size: 1.1em;
    display: inline-flex;
    align-items: center;
}

.red-icon {
    color: #d10000;
    filter: sepia(1) saturate(10000%) hue-rotate(330deg);
}

.red-box {
    background-color: #d10000;
    color: white;
    padding: 2px 5px;
    border-radius: 4px;
    font-size: 0.9em;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 550px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: modalAppear 0.3s ease-out;
}

@keyframes modalAppear {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.close-btn {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    cursor: pointer;
    color: #888;
    line-height: 1;
}

.close-btn:hover {
    color: #333;
}

.modal-content p {
    color: #444;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    margin-top: 10px;
}