* {
    margin: 0;
    padding: 0;
}
body {
    font-family: Arial, sans-serif;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 15px 20px;
    color: white;
}
.news-logo {
    display: flex;
    align-items: center;
}

.news-logo img {
    width: 100px;
    height: 60px;
    margin-right: 10px;
}
.nav-buttons {
    display: flex;
    gap: 10px;
}
.nav-buttons a {
    background-color: #ff9800;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    padding: 10px 15px;
    text-decoration: none;
}
.nav-buttons a:hover {
    background-color: #e68900;
}

news page 

     .sidebar {
        height: 80vh;
        background-color: #f8f9fa;
        padding: 20px;
    }
.sidebar {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.card {
    margin-top: 30px;
    border: none;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: 150px;
    object-fit: cover;
}

.card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.scrollable-text {
    height: 80px;
    overflow-y: auto;
    font-size: 14px;
}

.btn-primary {
    background-color: #ff9800 !important;
    border: none !important;
    color: white;
    font-weight: bold;
    transition: background 0.3s ease-in-out;
    margin-top: auto;
}

.btn-primary:hover {
    background-color: #e68900 !important;
    color: white;
}

.form-label {
    font-weight: bold;
}
.news-content {
    padding: 20px;
}



