body,
html {
    height: 100%;
    color: aliceblue;
    margin: 0;
    padding: 0;
}

.main {
    background-image: url("./assets/football-ground.jpg");
    height: 100%;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


.navbar {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; 
}


.info {
    
    background-color: rgba(255, 255, 255, 0.7); 
    backdrop-filter: blur(.5px); 
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 30px; 
    margin: 80px auto 20px; 
    max-width: 800px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 20px; 
    line-height: 1.6; 
    color: #333; 
}


.info p {
    margin-bottom: 20px; 
}

.info p:last-child {
    margin-bottom: 0; 
}

.info a {
    color: #007BFF;
    text-decoration: none; 
}

.info a:hover {
    text-decoration: underline; 
}

/* Styles for login button */
.btn-outline-primary {
    color: #007BFF; 
    border-color: #007BFF;
}

.btn-outline-primary:hover {
    background-color: #007BFF; 
    color: white; 
}

/* Custom Modal Styling */
.custom-modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    background-color: rgba(0, 0, 0, 0.5); /* Black w/ opacity */
    justify-content: center;
    align-items: center;
}

.custom-modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 400px;
    position: relative;
}

/* Improved Font Styling for Modal */
.custom-modal h5 {
    font-size: 1.5rem; /* Increase the font size */
    font-weight: bold; /* Make the title bold */
    margin-bottom: 20px;
    text-align: center;
    color: #333; /* Darker color for better contrast */
}

.custom-modal label {
    font-size: 1rem; /* Increase the font size of labels */
    font-weight: 500;
    color: #555; /* Slightly darker for better visibility */
}

.custom-modal input {
    font-size: 1rem; /* Increase the font size of input text */
    padding: 10px;
}

.custom-modal .btn-primary {
    font-size: 1rem;
    padding: 10px 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem; /* Make the close icon larger */
    color: #333; /* Darker color for better visibility */
    cursor: pointer;
}

/* Add this CSS to style the profile menu */
.dropdown-menu {
    position: absolute;
    right: 0;
    top: 100%;
    min-width: 160px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
  }
  
  .dropdown-item {
    padding: 8px 16px;
    display: block;
    color: #333;
    text-decoration: none;
  }
  
  .dropdown-item:hover {
    background-color: #f8f9fa;
  }
  