/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}

/* Container styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Top bar styles */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #ddd;
    padding: 10px 0;
    margin-bottom: 20px;
}

.welcome-message {
    font-size: 16px;
    font-weight: bold;
}

.top-right-buttons {
    display: flex;
    align-items: center;
}

.top-right-buttons a {
    text-decoration: none;
    padding: 10px 20px;
    color: white;
    border-radius: 5px;
    margin-left: 10px;
}

.top-right-buttons .settings-icon img,
.top-right-buttons .bil-icon img {
    width: 24px;
    height: auto;
    vertical-align: middle;
}

.top-right-buttons .login-button {
    background-color: #007bff;
}

.top-right-buttons .logout-button {
    background-color: #dc3545;
}

/* Content wrapper styles */
.content-wrapper {
    display: flex;
}

/* Left column styles */
.left-column {
    width: 200px; /* Adjusted width to 200px for better layout */
    background-color: #f4f4f4;
    padding: 10px;
    box-sizing: border-box;
    border-right: 4px solid #ddd;
    margin-right: 10px; /* Increased margin for better spacing */
}

.left-column img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

/* Main content styles */
.main-content {
    flex: 1; /* Take up remaining space */
    padding: 10px;
    box-sizing: border-box;
}

/* Responsive design */
@media (max-width: 768px) {
    .left-column {
        display: none;
    }

    .main-content {
        width: 100%;
    }
}

/* RSS item styles */
.rss-item {
    border-bottom: 1px solid #ddd;
    padding: 5px 0; /* Adjusted padding for better spacing */
    margin-bottom: 10px;
}

.rss-item a {
    color: black;
    text-decoration: none;
    line-height: 1.5; /* Improved line-height for readability */
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
}

.rss-item a:hover {
    text-decoration: underline;
}

/* RSS icon styles */
.rss-icon {
    width: 50px;
    height: auto;
    margin-right: 10px; /* Increased margin for better spacing */
    vertical-align: middle;
}
