* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffa04d; /* Set background color to #ffa04d */
    color: #ffffff; /* Default text color to white */
	font-size: 16px;
}

header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: #ff7700; /* Main orange color */
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

h1 {
    color: #ffffff; /* White text for contrast */
	font-size: 20px;
}

h2 {
    color: #ffffff; /* Blue for subheadings */
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #ff7700; /* Orange underline */
	font-size: 18px;
}

p {
    color: #ffffff; /* Set paragraph text color to white */
}

a {
    color: #0088ff; /* Blue links */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    color: #ffffff; /* Set footer text color to white */
}

/* Responsive design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
}

/* Additional styles for buttons, alerts, etc. */
button {
    background-color: #ff7700; /* Orange button */
    color: white; /* Button text color */
    border: none;
    padding: 10px 20px;
    border-radius: 8px; /* More rounded corners */
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease, transform 0.2s ease; /* Added transform transition */
}

button:hover {
    background-color: #ff851a; /* Lighter orange on hover */
    transform: scale(1.05); /* Slightly enlarge on hover */
}

.error {
    color: #ff0008; /* Red for error messages */
    padding: 10px;
    margin: 10px 0;
    background-color: #fde8e7; /* Light red background */
    border-radius: 4px;
    border-left: 4px solid #ff0008; /* Red left border */
}

.loading {
    text-align: center;
    padding: 20px;
    color: #ffffff; /* Set loading text color to white */
}

.feed-section {
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: #ffffff; /* White background for sections */
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.feed-section h2 {
    margin-top: 0;
}

.feed-section:last-child {
    margin-bottom: 0;
}

.xml-link {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 8px;
    background-color: #f8f9fa; /* Light gray background */
    border: 1px solid #dee2e6; /* Light gray border */
    border-radius: 4px;
    color: #666666; /* Dark gray text */
    font-size: 0.9em;
}

.xml-link:hover {
    background-color: #e9ecef; /* Slightly darker gray on hover */
    text-decoration: none;
    color: #ffffff; /* Changed hover text color to white */
}

a, button {
    transition: background-color 0.3s ease, color 0.3s ease;
}
