.category-content {
    padding: 30px;
    height: 50%;
    display: flex;
    flex-direction: column;
}

.category-title {
    font-weight: bold;
    margin-bottom: 2px;
	margin-top: 2px;
    font-size: 15px;
}

.category-description {
    font-size: 12px;
    color: #666;
    overflow: hidden;
    flex-grow: 1; /* Allow description to take available space */
}

/*category-tag {
    margin-top: 6px;
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}*/

.category-img img {
    width: 80%;
    height: 80%;
}

#gifts-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1200px; /* Limit the maximum width */
    margin: 0 auto; /* Center the container */
}

/* Optional refresh button styling */
#refresh-gifts {
    background-color: #5c7b9a;
    border: none;
    color: white;
    padding: 12px 24px;
    text-align: center;
    text-decoration: none;
    display: block;
    font-size: 16px;
    margin: 20px auto;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    width: fit-content;
}

#refresh-gifts:hover {
    background-color: #5c7b9a;
	box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}
