#wpsub-post-form {
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
}
#wpsub-post-form .form-group{
    margin-bottom: 1rem;
}
#wpsub-post-form .form-group label {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
}
#wpsub-post-form input, #wpsub-post-form textarea, #wpsub-post-form select {
    margin-top: 5px;
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
#wpsub-post-form .wpsub-submit-btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}
#wpsub-post-form .wpsub-submit-btn {
    /* background-color: #007bff; */
    /* border-color: #007bff; */
    display: inline-block;
    font-weight: 400;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: .375rem .75rem;
    /* font-size: 1rem; */
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
#wpsub-post-form input{
    height: auto;
    width: 100%;
}
.select2-dropdown {
    background-color: white;
    border: 1px solid #ced4da;
    border-radius: 4px;
    box-sizing: border-box;
    display: block;
    position: absolute;
    left: -100000px;
    width: 100%;
    z-index: 1051;
}
/* .select2-container{
    font-size: 1rem;
} */
.select2-container--default .select2-results>.select2-results__options {
    max-height: 200px;
    overflow-y: auto;
}
#wpsub-post-form .select2-container--default .select2-selection--multiple{
    height: 32px;
    border-radius: .25rem;
    border: 1px solid #ced4da;
    box-sizing: unset;
    width: 100%;
    min-height: auto;
    padding: .375rem .75rem;
}
#wpsub-post-form .select2 textarea{
    padding:0
}
#wpsub-post-form .select2 textarea{
    border: 0px !important;
}
#wpsub-post-form .tagify{
    width: 100%;
}
#wpsub-recaptcha-error {
    color: red;
    font-size: 12px;
    margin-top: 5px;
}
.error-message {
    color: red;
    font-size: 12px;
    margin-top: 5px;
}
#wpsub-alert-message{
    margin-top: 2%;
}
#wpsub-alert-message .alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}
#wpsub-alert-message .alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}
.notice-success {
    background-color: #dff0d8;
    border-left: 4px solid #3c763d;
    padding: 10px;
    margin: 20px 0;
}
#wpsub-post-form .mce-container-body button{
    background: transparent;
    /* padding-left: 6px; */
    /* padding-right: 20px; */
    color: #000;
    font-size: 13px;
    line-height: 1.53846153;
    text-transform: none;
}
/* Auth Form */
.wpsub-auth-form {
    max-width: 400px;
    margin: auto;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.wpsub-auth-form .input-field{
    width: 100%;
    background: #fff;
}
.wpsub-auth-form p {
    margin-bottom: 15px;
}

.wpsub-auth-form  label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.wpsub-auth-form  button {
    padding: auto;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}
#wpsub-loader {
    display: none;
    /* position: fixed; */
    font-size: 30px;
    z-index: 99999999;
}

.wpsub-dashboard .navbar {
    display: flex;
    justify-content: left;
    align-items: center;
    background-color: #2C3E50;
    padding: 0;
    color: white;
}

.wpsub-dashboard .navbar .logo {
    font-size: 22px;
    font-weight: bold;
}

.wpsub-dashboard .navbar ul {
    display: flex;
    list-style: none;
    margin-bottom: 10px;
    margin-top: 10px;
}

.wpsub-dashboard .navbar li {
    margin: 0 15px;
    list-style: none;
}

.wpsub-dashboard .navbar a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    transition: color 0.3s;
}

.wpsub-dashboard .navbar a:hover {
    color: #1ABC9C;
}

.wpsub-dashboard .hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    .wpsub-dashboard .navbar ul {
        flex-direction: column;
        align-items: center;
        display: none;
        width: 100%;
        background-color: #2C3E50;
        padding: 10px 0;
        position: absolute;
        top: 50px;
        left: 0;
        z-index: 1;
    }
    .wpsub-dashboard .navbar ul.active {
        display: flex;
    }
    .wpsub-dashboard .hamburger {
        display: block;
        color: white;
    }
    .wpsub-dashboard .navbar li {
        margin: 10px 0;
    }
}