/* Container Styling */
.container {
	max-width: 1000px;
	margin: 20px auto;
	padding: 20px;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Title Styling */
.title {
	text-align: center;
	font-size: 2.5em;
	color: #e84e31;
	margin-bottom: 10px;
}

/* Ensure container for coupon list is a flexbox */
.coupon-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

/* Set coupon items to take up 48% width for a two-column layout */
.coupon-item {
    width: 48%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fafafa;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    box-sizing: border-box; /* Ensures padding doesn’t overflow */
}

/* Responsive Design for Mobile Devices */
@media (max-width: 768px) {
    .coupon-item {
        width: 100%; /* Single column layout on small screens */
    }
}

/* Bookmark Footer Styling */
.bookmark-footer {
	font-size: 1.2em;
	color: #e84e31;
	text-align: center;
	margin-top: 20px;
	margin-bottom: 20px;
}

/* Description Styling */
.description {
	text-align: center;
	color: #666;
	font-size: 1em;
	line-height: 1.6;
}

/* Affiliate Disclosure Styling */
.affiliate-disclosure {
	font-size: .85em;
	color: #999;
	background-color: #f5f5f5;
	padding: 10px;
	border-radius: 8px;
	text-align: center;
	line-height: 1.4;
}