/* Style for Competition Details */
.competition-details {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

.competition-details h4 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    text-transform: uppercase;
    text-align: center;
}

.competition-details ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.competition-details ul li {
    font-size: 16px;
    color: #555;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.competition-details ul li i {
    color: #9AD953; /* Custom icon colour */
    margin-right: 10px;
    font-size: 18px;
    display: inline-block;
    width: 24px; /* Ensure consistent alignment */
}

.competition-details ul li strong {
    color: #333; /* Neutral text colour */
    font-weight: bold;
    margin-right: 8px;
}

.competition-details ul li a {
    color: #0073aa; /* Link colour */
    font-weight: bold;
    text-decoration: none;
}

.competition-details ul li a:hover {
    color: #005b85; /* Hover colour for links */
    text-decoration: underline;
}
/* WooCommerce Buy Button */
.woocommerce div.product form.cart .button, 
.woocommerce div.product .single_add_to_cart_button {
    background-color: #9AD953; /* Custom green colour */
    color: #fff; /* White text */
    border: none; /* Remove border */
    border-radius: 5px; /* Rounded corners */
    padding: 10px 20px; /* Adjust padding */
    font-size: 16px;
    text-transform: uppercase; /* Capitalise text */
    transition: background-color 0.3s ease-in-out;
}

.woocommerce div.product form.cart .button:hover, 
.woocommerce div.product .single_add_to_cart_button:hover {
    background-color: #7AB53E; /* Darker green for hover */
    color: #fff; /* Keep text white */
}
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999; /* Ensure it stays on top */
    background-color: #fff; /* Add background for visibility */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional shadow */
}

body {
    margin-top: 100px; /* Adjust this to match your header height */
}
