.marquee-content:hover {
    animation-play-state: paused; /* Stops the animation on hover */
}
.marquee {
            width: 100%;
            height: 250px;
            overflow: hidden;
            position: relative;
            background-color: #a99b7e;
			margin:0;
        }
        .marquee-heading {
            background-color: #174b29;
            color: #fff !important;
            font-size: 16px;
            font-weight: bold;
            padding: 10px;
            margin: 0;
            text-align: left;
            position: absolute;
            top: 0;
            width: 100%;
            z-index: 10;
        }
        .marquee-content {
            font-size: 12px;
            position: absolute;
            padding: 10px;
            top: 40px;
            width: 100%;
            height: 100%;
            animation: marqueeUpward 15s linear infinite;
        }
        @keyframes marqueeUpward {
            from {
                top: 100%;
            }
            to {
                top: -100%;
            }
        }
        .news-content {
            padding: 10px 0;
        }
        .news-content p {
            display: inline;
            font-size: 12px;
            color: #000;
        }
.news-content:hover {
    animation-play-state: paused; /* Stops the animation on hover */
}
        #npotable, td,th {
            color:black;
          border: 1px solid #000;
          padding: 8px;
            border-collapse: collapse;
        }
        #npotable,th {background-color: #015129;
          color: white;
        }
        .button {
            display: inline-block;
            padding: 10px 20px;
            font-size: 16px;
            color: #000;
            background-color: #FDFDFD; /* WordPress blue */
            text-decoration: none;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .button:hover {
            background-color: #015129; }
            /* General styling for the form */
form {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #64535362;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Style for labels */
form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #000;
}

/* Style for text inputs and select boxes */
form input[type="text"],
form input[type="email"],
form input[type="tel"],
form input[type="number"],
form select,
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
}

/* Style for the textarea */
form textarea {
    height: 150px;
}

/* Style for the submit button */
form input[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: #015129;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

form input[type="submit"]:hover {
    background-color: 015129;
}

/* Style for error messages */
form .error {
    color: red;
    font-size: 14px;
    margin-top: -10px;
    margin-bottom: 10px;
}