/**
 * WP Author Status - Admin Style
 *
 * @package WP Author Status v2.0 - 30 January, 2025
 * @link https://www.realwebcare.com/
 */
/* WP Author Status Dashboard Widget Styling */
#dashboard-widgets .wpaust-author-status-widget {
    padding: 10px;
    font-family: Arial, sans-serif;
}

#dashboard-widgets .wpaust-author-status-widget .wpaust-hidden {
    display: none;
}
/* Modal */
#wpaust-modal-message.wpaust-status-modal {
	position:fixed;
	z-index:9999;
	left:0;
	top:0;
	width:100%;
	height:100%;
	background:rgba(0,0,0,0.75);
	display:flex;
	justify-content:center;
	align-items:center;
	transition:opacity .3s ease-in-out
}

#wpaust-modal-message .wpaust-modal-content {
    background: linear-gradient(145deg, #ffffff, #f3f3f3);
    color: #444444;
    padding: 20px;
    border-radius: 10px;
    font-size: 16px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(34, 187, 51, 0.3);
    animation: fadeIn .5s ease-in-out;
    max-width: 330px;
    width: 90%;
}

#wpaust-modal-message .wpaust-modal-content.wpaust-success-message {
    max-width: 400px;
    padding: 2.5em;
    background: white;
    border-radius: 1rem;
    color: #000;
    font-weight: 600;
}

#dashboard-widgets .wpaust-modal-content.wpaust-success-message h4,
#dashboard-widgets .wpaust-modal-content.wpaust-error-message h4 {
    color: #22bb33;
    font-size: 28px;
    max-width: 160px;
    margin: 0 auto 20px;
    padding: 0 0 5px;
    border-bottom: 1px solid #ddd;
}

#dashboard-widgets .wpaust-modal-content.wpaust-error-message {
    border: 1px solid #e66464;
    color: #b63737;
}

#dashboard-widgets .wpaust-modal-content.wpaust-error-message h4 {
    color: #b63737;
}
/* //Modal */
#dashboard-widgets .wpaust-author-status-widget .wpaust-status-display h3 {
    position: relative;
    font-size: 18px;
    font-weight: 600;
    color: #23282d;
    margin: -10px 0 0;
    padding: 0;
    height: 50px;
    line-height: 50px;
}

#dashboard-widgets .wpaust-author-status-widget .wpaust-status-display #wpaust-loader {
    position: absolute;
    right: 0;
    top: 50%;
    width: 32px;
    height: 32px;
    background: #fff url(../images/ajax-loader.gif) no-repeat;
    transform: translateY(-50%);
    z-index: 1;
}

#dashboard-widgets .wpaust-author-status-widget .wpaust-status-display #wpaust-status-body {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #e1e1e1;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#dashboard-widgets .wpaust-author-status-widget .wpaust-status-display #wpaust-author-dashboard-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Textarea Styling */
#dashboard-widgets .wpaust-author-status-widget .wpaust-status-display #wpaust-author-status {
    width: 100%;
    min-height: 130px;
    line-height: 1.6em;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    color: #333;
    background: #fff;
    resize: none;
    transition: border-color 0.3s ease-in-out;
}

#dashboard-widgets .wpaust-author-status-widget .wpaust-status-display #wpaust-author-status:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 4px rgba(0, 115, 170, 0.3);
}

/* Submit Button Styling */
#dashboard-widgets .wpaust-author-status-widget #wpaust-author-dashboard-form .button-primary {
    background: #0073aa;
    border: none;
    color: #fff;
    font-size: 14px;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

#dashboard-widgets .wpaust-author-status-widget #wpaust-author-dashboard-form .button-primary:hover {
    background: #005177;
}

/* Status Date */
#dashboard-widgets .wpaust-author-status-widget .wpaust-status-display .wpaust-status-date-show {
    margin-top: 10px;
    font-size: 13px;
    color: #777;
    text-align: right;
}

/* General Settings Area Styling */
.wpaust_settings_area {
    color: #333;
    background: #f9f9f9;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 64%;
    margin: 20px 0;
    float: left;
}

.wpaust_settings_area .wrap.wpaust_settings {
    min-height: 640px;
    margin: 10px 0;
}

.wpaust_settings_area .wpaust_settings .main-header {
    font-size: 24px;
    font-weight: bold;
    color: #444;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Tab Navigation Styling */
.wpaust_settings_area .wpaust_settings .nav-tab-wrapper {
    display: flex;
    border-bottom: none;
}

.wpaust_settings_area .wpaust_settings .nav-tab {
    text-align: center;
    margin: 0 0 0 10px;
    padding: 9px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: #00547c;
    border: 1px solid #ddd;
    border-radius: 8px 8px 0 0;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.wpaust_settings_area .wpaust_settings .nav-tab#wpaust_generals-tab {
    margin-left: 25px;
}

.wpaust_settings_area .wpaust_settings .nav-tab:hover {
    background: #dcdfe3;
    color: #333;
}

.wpaust_settings_area .wpaust_settings .nav-tab-active {
    background: #fff;
    color: #333;
    border-color: #ddd;
    border-bottom: none;
}

/* Content Group Styling */
.wpaust_settings_area .wpaust_settings .metabox-holder {
    padding-top: 0 !important;
}

.wpaust_settings_area .wpaust_settings .group {
    background: #fff;
    border: 1px solid #ddd;
    margin-top: -1px;
    padding: 20px 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.wpaust_settings_area .wpaust_settings .group h2 {
    font-size: 21px;
    font-weight: 700;
    color: #00547c;
    margin-bottom: 30px;
    border-bottom: 2px solid #00547c;
    padding-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease-in-out, border-bottom-color 0.3s ease-in-out;
}

/* Table Styling */
.wpaust_settings_area .wpaust_settings table.form-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.wpaust_settings_area .wpaust_settings table.form-table tr {
    display: flex;
    margin: 0;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.wpaust_settings_area .wpaust_settings table.form-table tr.wpaust_delall {
    border: none;
    padding-bottom: 0;
}

.wpaust_settings_area .wpaust_settings table.form-table tr.wpaust_caution {
    position: relative;
    top: -30px;
    padding-top: 0;
}

.wpaust_settings_area .wpaust_settings table.form-table th {
    position: relative;
    top: 3px;
    text-align: left;
    padding: 10px;
    color: #333;
    font-weight: bold;
    width: 30%;
}

.wpaust_settings_area .wpaust_settings table.form-table td {
    padding: 10px;
    width: 70%;
}

.wpaust_settings_area .wpaust_settings table.form-table input[type="checkbox"] {
    margin-right: 10px;
}

.wpaust_settings_area .wpaust_settings table.form-table input[type="number"] {
    width: 80px;
    padding: 0 0 0 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.wpaust_settings_area .wpaust_settings td .description {
    margin-top: 5px;
    font-size: 12px;
    color: #666;
}

/* Buttons Styling */
.wpaust_settings_area .wpaust_settings .submit .button {
    padding: 3px 15px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.wpaust_settings_area .wpaust_settings .submit .button:hover {
    transform: translateY(-2px);
}

.wpaust_settings_area .wpaust_settings .submit .button:active {
    transform: translateY(0);
}

/* Help */
.wpaust_settings_area .wrap.wpaust_settings .wpaust-help-info{
    background-color:#fff;
    border:1px solid #ddd;
    border-radius:8px;
    padding:20px;
    margin:34px 10px 20px 0;
    line-height:1.6
}

.wpaust_settings_area .wrap.wpaust_settings .wpaust-help-info .get-instructed {
   font-size:20px;
   font-weight:bold;
   margin-bottom:15px;
   text-transform:uppercase
}

.wpaust_settings_area .wrap.wpaust_settings .wpaust-help-info .wpaust-help-instructions {
   list-style:decimal inside;
   margin:0;
   padding:0;
   color:#333
}

.wpaust_settings_area .wrap.wpaust_settings .wpaust-help-info .wpaust-help-instructions ul {
   list-style:disc inside;
   margin:10px 0 0 20px;
   padding:0
}

.wpaust_settings_area .wrap.wpaust_settings .wpaust-help-info .wpaust-help-instructions li {
   margin:10px 0;
   padding:10px;
   background-color:#f9f9f9;
   border:1px solid #eee;
   border-radius:4px
}

.wpaust_settings_area .wrap.wpaust_settings .wpaust-help-info .wpaust-help-instructions li pre {
   display:inline-block
}

.wpaust_settings_area .wrap.wpaust_settings .wpaust-help-info .wpaust-help-instructions li code {
    display: inline;
    margin: 10px 5px;
    padding: 10px;
    background-color: #1F1F1F;
    border: 1px solid #ddd;
    color: #55c6f9;
}

.wpaust_settings_area .wrap.wpaust_settings .wpaust-help-info .wpaust-help-instructions li strong {
   color:#0056b3;
   font-weight:bold
}

.wpaust_settings_area .wpaust-help-info .wpaust-help-instructions .wpaust-keyword {
   color:#B8DC9F
}

.wpaust_settings_area .wpaust-help-info .wpaust-help-instructions .wpaust-function {
   color:#fe8d59
}

.wpaust_settings_area .wpaust-help-info .wpaust-help-instructions .wpaust-string {
   color:#00fbbd
}
/* // Help */

/* Sidebar */
#wpaust-sidebar {
    position: relative;
    background: #f9f9f9;
    border: 1px solid #ddd;
    padding: 15px 15px 0;
    border-radius: 8px;
    width: 27%;
    float: left;
    top: 20px;
    margin-left: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#wpaust-sidebar #wpaustusage-note.wpaustusage-sidebar,
#wpaust-sidebar #wpaustusage-info.wpaustusage-sidebar {
    height:auto;
    background-color:#ffffff;
    border:1px solid #ddd;
    color:#000;
    position:relative;
    max-width:422px;
    box-shadow:0 14px 80px rgb(34 35 58 / 20%);
    margin: 0 0 2em;
    padding:25px 25px 15px;
    border-radius:8px;
    transition:all .3s
}

#wpaust-narration #wpaustusage-note.wpaustusage-maincontent .wpaust,
#wpaust-sidebar #wpaustusage-note.wpaustusage-sidebar .wpaust {
    margin:0 0 10px;
    line-height:30px
}

#wpaust-narration #wpaustusage-note .wpaust h3,
#wpaust-sidebar .wpaustusage-sidebar h3 {
    font-size:20px;
    font-weight:700;
    color:#0d0925;
    margin-top:0;
    line-height:30px;
    border-bottom:1px solid #72777c;
    padding-bottom:7px;
    text-transform:uppercase
}

#wpaust-narration #wpaustusage-note.wpaustusage-maincontent .wpaust a,
#wpaust-sidebar #wpaustusage-note.wpaustusage-sidebar .wpaust a {
    float:none;
    background:none;
    margin:0;
    padding:0;
    color:#2271b1;
    font-size:100%;
    border-radius:0;
    box-shadow:none;
    border:0;
    font-weight:600;
    text-decoration:none
}


#wpaust-narration #wpaustusage-note.wpaustusage-maincontent .wpaust a:hover,
#wpaust-sidebar #wpaustusage-note.wpaustusage-sidebar .wpaust a:hover {
    color:#135e96;
    text-decoration:underline
}

#wpaust-sidebar #wpaustusage-note.wpaustusage-sidebar .wpaust .wpaust-first::first-letter{
    font-size:2em;
    line-height:1;
    letter-spacing:-4px;
    font-weight:700;
    color:#e9950c
}

#wpaust-narration #wpaustusage-note.wpaustusage-maincontent .wpaust ol li,
#wpaust-sidebar #wpaustusage-note.wpaustusage-sidebar .wpaust ol li {
    line-height:1.4;
    color:#262626
}


#wpaust-sidebar #wpaustusage-note.wpaustusage-sidebar .wpaust code {
    color: #ffc623;
    display: inline-block;
    height: 36px;
    line-height: 36px;
    margin: 0;
    padding: 3px 15px;
    font-size: 13px;
    font-weight: 600;
    border-left: 10px solid #343541;
    background: #000000;
}

#wpaust-sidebar #wpaustusage-note.wpaustusage-sidebar .wpaust pre {
    margin:10px 0
}

#wpaust-sidebar #wpaustusage-info.wpaustusage-sidebar .wpaustusage-list li {
    list-style:disc;
    margin:0 0 0 20px;
    font-size:16px;
    line-height:30px
}

#wpaust-sidebar #wpaustusage-info.wpaustusage-sidebar a {
    color:#0073aa;
    text-decoration:none;font-weight:600
}

#wpaust-sidebar #wpaustusage-info.wpaustusage-sidebar a:hover {
    text-decoration:underline
}
/* //Sidebar */

/* Narration */
#wpaust-narration {
    position: relative;
    top: 30px;
    margin: 0 0 30px;
    padding: 15px 40px;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

#wpaust-narration #wpaustusage-note.wpaustusage-maincontent{
    padding-bottom:20px
}

#wpaust-narration #wpaustusage-note .wpaust h3 {
    margin: 20px 0;
}

#wpaust-narration #wpaustusage-note.wpaustusage-maincontent .wpaust .likeit {
    position:relative;
    margin:0 0 50px;
    font-size:14px;
    text-transform:uppercase;
    text-align:justify;
    color:#2271b1;
    font-weight:600;
    line-height:1.5
}

#wpaust-narration #wpaustusage-note.wpaustusage-maincontent .wpaust .likeit a{
    position:absolute;
    left:50%;
    top:calc(100% + 5px);
    font-size:16px;
    background-image:linear-gradient(147deg,#fe8a39 0%,#fd3838 74%);
    margin:10px 0 0;
    padding:6px 18px;
    border-radius:50px;
    color:#fff;
    text-decoration:none;
    text-align:center;
    letter-spacing:4px;
    transform:translateX(-50%)
}

#wpaust-narration #wpaustusage-note.wpaustusage-maincontent .wpaust .likeit a:hover{
    text-decoration:none;
    color:#ffe000;
    background-image:linear-gradient(335deg,#fe8a39 0%,#fd3838 74%)
}
/* //Narration */

/* Style for the review notice container */
#wpaust-review {
    background: linear-gradient(135deg, #f0f9ff, #cfe7f9);
    border: 2px solid #4a90e2;
    border-radius: 12px;
    margin: 1em auto 0;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    max-width: 90%;
    animation: fadeIn 0.6s ease-in-out;
}

/* Subtle fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Style for the paragraph text */
#wpaust-review p {
    font-size: 16px;
    line-height: 1.6; /* Improved readability */
    margin: 10px 0;
}

/* Highlight plugin name */
#wpaust-review b {
    color: #0073aa; /* WordPress blue color */
}

/* Button container */
.wpaust-review-btn {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 15px;
}

/* Primary button style */
.wpaust-review-btn .button-primary,
.wpaust-review-btn .button-secondary {
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.wpaust-review-btn .button-primary:hover,
.wpaust-review-btn .button-secondary:hover {
    transform: scale(1.05); /* Slight zoom-in effect */
}

/* Dismissible style (if needed for close functionality) */
.wpaust-is-dismissible {
    position: relative;
    padding-right: 40px; /* Space for close button */
}

.wpaust-notice .wpaust-close-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 13px;
    height: 13px;
    line-height: 10px;
    text-align: center;
    background: #999;
    border-radius: 50%;
    font-size: 15px;
    font-weight: 900;
    color: #d3e9f9;
    cursor: pointer;
    transition: color 0.3s ease;
}

.wpaust-notice .wpaust-close-icon:hover {
    background: #333; /* Darker on hover */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .wpaust_settings_area .wpaust_settings .nav-tab-wrapper {
        flex-direction: column;
    }

    .wpaust_settings_area .wpaust_settings table.form-table th,
    .wpaust_settings_area .wpaust_settings table.form-table td {
        display: block;
        width: 100%;
    }

    .wpaust_settings_area .wpaust_settings table.form-table th {
        margin-bottom: 10px;
    }

    .wpaust_settings_area .wpaust_settings table.form-table input[type="number"] {
        width: 100%;
    }
}

/* Responsive Adjustments */
@media (max-width: 600px) {
    #dashboard-widgets .wpaust-author-status-widget .wpaust-status-display #wpaust-author-status {
        min-height: 60px;
    }
    #dashboard-widgets .wpaust-author-status-widget {
        padding: 15px;
    }
}
