/* styles.css */
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f5f5f5;
            margin: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
        }

        form {
            background-color: #fff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            max-width: 600px;
            margin: auto;
            width: 100%;
            box-sizing: border-box;
        }

        .form-check-label {
            display: inline-flex; /* Use inline-flex to display on the same line */
            align-items: center; /* Align items vertically */
            width: 80%;
            text-align: left;
            margin-bottom: 15px;
        }
        
        .form-check-input {
            margin-right: 10px;
            width: 20px; /* Adjust the width as needed */        
        }
        
        .form-check-label span {
            color: red;
            margin-right: 5px; /* Add space between asterisk and text */
        }
        
        button[disabled] {
            background-color: grey; /* Gray out the button when disabled */
            cursor: not-allowed;
        }
        
        header {
            text-align: center;
            margin-bottom: 20px;
        }

        header img {
            max-width: 100%;
            height: auto;
            max-height: 100px; /* Adjust the max-height as needed */
        }

        h1 {
            text-align: center;
            color: #006a4e; /* Girton Parish Green */
        }

        label {
            display: block;
            margin-bottom: 5px;
            color: #333;
        }

        input, select, textarea {
            width: 100%;
            padding: 10px;
            margin-bottom: 15px;
            box-sizing: border-box;
            border: 1px solid #ccc;
            border-radius: 5px;
        }

        select {
            appearance: none;
            background: url('data:image/svg+xml;utf8,<svg fill="black" height="24" width="24" xmlns="http://www.w3.org/2000/svg"><polygon points="0,0 24,0 12,24" /></svg>') no-repeat right 10px center/15px 15px;
        }

        textarea {
            resize: vertical;
        }

        button {
            background-color: #006a4e; /* Girton Parish Green */
            color: white;
            padding: 10px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
            margin: 2px;
        }

        button:hover {
            background-color: #00492e; /* Darker shade of Girton Parish Green */
        }

        .hidden {
            display: none;
        }

        .subCategoryHeader {
            font-size: 1.2em;
            font-weight: bold;
            margin-top: 15px;
        }
        #jiraForm.loading::before {
            content: "";
            position: fixed;
            top: 50%;
            left: 50%;
            margin-top: -20px; /* half of the spinner height */
            margin-left: -20px; /* half of the spinner width */
            width: 40px;
            height: 40px;
            border: 4px solid #f3f3f3; /* Light gray border */
            border-top: 4px solid #3498db; /* Blue border for animation */
            border-radius: 50%;
            animation: spin 1s linear infinite; /* Rotate animation */
            z-index: 9999;
            opacity: 0.7;
        }
        .loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }
        
        .spinner {
            border: 4px solid rgba(0, 0, 0, 0.1);
            border-top: 4px solid #006a4e; /* Girton Parish Green */
            border-radius: 50%;
            width: 30px;
            height: 30px;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        hr.style2 {
            border-top: 3px double #8c8b8b;
          }


hr.style5 {
    background-color: #fff;
    border-top: 2px dashed #8c8b8b;
  }
        
/* Add the following styles to your existing styles.css */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    padding-top: 60px;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 40%;
    margin: auto;
    text-align: center; /* Center the content horizontally */
}
    

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.stars {
    font-size: 24px;
    cursor: pointer;
}

.star {
    display: inline-block;
}

.star.checked::before {
    content: "\2605"; /* Unicode character for a filled star */
}

/*  
.rating {
  
    position: relative;
    width: 180px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .3em;
    padding: 5px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 0 2px #b3acac;
    
 }
 */

 .rating__result {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-10px) translateX(-5px);
    z-index: -9;
    font: 3em Arial, Helvetica, sans-serif;
    color: #ebebeb8e;
    pointer-events: none;
 }
 
 .rating__star {
    font-size: 1.3em;
    cursor: pointer;
    color: #dabd18b2;
    transition: filter linear .3s;
    display: inline-block;
    margin-bottom: 10px; /* Add margin at the bottom */
 }
 
 .rating__star:hover {
    filter: drop-shadow(1px 1px 4px gold);
 }
 #ratingModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

/* Style for the modal content */
#ratingModal .modal-content {
    background-color: #fefefe;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}
#banner {
    background-color: black;
    width: 100%;
    height: 30px; /* Adjust the height as needed */
    margin: auto;
    padding: 5px;
    display: flex;
    align-items: center;
    border-bottom-left-radius: 15px; /* Set the radius for the bottom left corner */
    border-bottom-right-radius: 15px; /* Set the radius for the bottom right corner */
}

#banner a {
    text-decoration: none;
    cursor: pointer;
    color: white; /* Set the text color to white for better visibility on black background */
    width: auto;
}

#banner img {
    margin-right: 1px; /* Add some margin to the right of the logo for spacing */
    width: 20%px; /* Adjust the width as needed */
    height: auto; /* Maintain the aspect ratio */
}

