/* Container for the assessment form */
#australia-immigration-assessment-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    border: 2px solid #8256B3;
}

/* Title of the assessment form */
#australia-immigration-assessment-container h2 {
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

/* Progress bar container */
.progress-bar-container {
    margin-bottom: 20px;
}

/* Progress bar styles */
.progress-bar {
    width: 100%;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar .progress {
    height: 20px;
    background-color: #8256B3;
    width: 0;
    transition: width 0.3s ease-in-out;
}

/* Form group styles */
.form-group {
    margin-bottom: 20px;
}

/* Label styles */
.form-group label {
    color: #555;
    font-size: 16px;
    margin-bottom: 5px;
    display: block;
}

/* Input and select styles */
.form-group select, 
.form-group input,
.form-group textarea {
    width: calc(100% - 22px);
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    display: block;
}

/* Submit button styles */
.submit-btn {
    background-color: #8256B3;
    color: white;
    font-size: 20px;
    padding: 10px 20px;
    border: 2px solid #6A3A97;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
    display: block;
    margin: 20px auto;
    text-align: center;
    transition: background-color 0.3s, transform 0.3s;
}

/* Submit button hover and active states */
.submit-btn:hover {
    background-color: #6A3A97;
    transform: scale(1.05);
}

.submit-btn:active {
    background-color: #5A2E80;
    transform: scale(1.1);
}

/* Back button styles */
.back-btn {
    background-color: #bbb;
    color: white;
    font-size: 20px;
    padding: 10px 20px;
    border: 2px solid #999;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
    display: block;
    margin: 20px auto;
    text-align: center;
    transition: background-color 0.3s, transform 0.3s;
}

/* Back button hover and active states */
.back-btn:hover {
    background-color: #999;
    transform: scale(1.05);
}

.back-btn:active {
    background-color: #777;
    transform: scale(1.1);
}

/* Popup styles */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid #8256B3;
}

.popup-content h3 {
    margin-bottom: 20px;
    color: #333;
    font-size: 24px;
}

.popup-content p {
    margin-bottom: 20px;
    color: #555;
    font-size: 18px;
}

.notify-apply-now-btn {
    background-color: #8256B3;
    color: white;
    font-size: 20px;
    padding: 15px 30px;
    border: 2px solid #6A3A97;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: background-color 0.3s, transform 0.3s;
}

.notify-apply-now-btn:hover {
    background-color: #6A3A97;
    transform: scale(1.05);
}

.notify-apply-now-btn:active {
    background-color: #5A2E80;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .popup-content h3 {
        font-size: 22px;
    }
    .popup-content p {
        font-size: 16px;
    }
    .notify-apply-now-btn {
        font-size: 18px;
        padding: 12px 25px;
    }
}

@media (max-width: 480px) {
    .popup-content h3 {
        font-size: 20px;
    }
    .popup-content p {
        font-size: 14px;
    }
    .notify-apply-now-btn {
        font-size: 16px;
        padding: 10px 20px;
    }
}

/* Container for the post content */
.thegadgetlover-notice-container {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: row;
    align-items: center;
}

/* Content inside the post container */
.thegadgetlover-notice-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
}

/* Post title styles */
.thegadgetlover-notice-content h2 {
    color: #333;
    font-size: 28px;
    margin-bottom: 10px;
}

/* Post content styles */
.thegadgetlover-post-content {
    color: #555;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}
.site-content {
    display: block !important; /* or any other display value you need */
}


/* Media query for smaller screens */
@media (max-width: 768px) {
    .thegadgetlover-notice-container {
        flex-direction: column;
        align-items: flex-start;
    }

    #australia-immigration-assessment-container, 
    .thegadgetlover-notice-container {
        max-width: 100%;
    }

    .submit-btn,
    .back-btn {
        width: 100%;
    }
}
