/* General Body Styling */
.body {
    background-color: #f9f9f9;
    /* Light background for the content area */
    padding: 20px;
    margin: 20px auto;
    max-width: 1200px;
    border-radius: 10px;
    /* Rounded corners for a more modern look */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    /* Soft shadow for depth */
}

/* Heading Styles */
.body h3 {
    font-size: 24px;
    font-weight: 700;
    color: #01AEEE;
    /* Theme color */
    margin-bottom: 15px;
    text-transform: uppercase;
    /* All caps for the journal title */
    letter-spacing: 1px;
}

.body h3 a {
    text-decoration: none;
    /* Remove underline */
    color: inherit;
    /* Use the heading color */
    transition: color 0.3s ease-in-out;
    /* Smooth transition for hover effect */
}

.body h3 a:hover {
    color: #0098cc;
    /* Darker shade of theme color on hover */
}

/* Description Section */
.body .description {
    margin-bottom: 20px;
}

.body .description p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    /* Slightly darker text for readability */
    margin-bottom: 15px;
}

.body .description p.normal {
    font-weight: normal;
}

/* Links List Styles */
.body .links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    /* Space between links */
}

.body .links li {
    display: inline-block;
}

.body .links a {
    text-decoration: none;
    font-size: 16px;
    color: #01AEEE;
    /* Theme color for the links */
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Link hover effects */
.body .links a:hover {
    background-color: #01AEEE;
    /* Background turns to theme color */
    color: white;
    /* White text on hover */
}

/* Current Issue Link Styling */
.body .links .current a {
    background-color: #0098cc;
    /* Different background color for the current issue link */
    color: white;
    font-weight: 700;
}

.body .links .current a:hover {
    background-color: #007ba7;
    /* Darker background on hover */
    color: #fff;
}

/* Register Link Styling */
.profile .register-link {
    text-decoration: none;
    /* Remove underline */
    font-size: 16px;
    color: #01AEEE;
    /* Theme color */
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 5px;
    /* Rounded corners */
    display: inline-block;
    /* Make it behave like a button */
    transition: background-color 0.3s ease, color 0.3s ease;
    /* Smooth hover effect */
}

/* Hover Effect for Register Link */
.profile .register-link:hover {
    background-color: #01AEEE;
    /* Background turns to theme color */
    color: white;
    /* White text on hover */
}

/* Active/Clicked State for the Register Link */
.profile .register-link:active {
    background-color: #0098cc;
    /* Slightly darker shade on click */
    color: white;
    /* Ensure text remains white */
}

.pkp_brand_footer {
    display: none;
}

/* Dashboard link styles */
.pkp_navigation_user a {
    text-decoration: none;
    color: white;
    /* Set text color to white */
    font-size: 18px;
    /* Increase font size for better readability */
    font-weight: 700;
    /* Bold the text */
    padding: 12px 20px;
    /* Add padding around the link */
    border-radius: 8px;
    /* Rounded corners for a modern look */
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /* Space between text and task count */
    background-color: #01AEEE;
    /* Theme color */
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.2s;
    /* Smooth transition effects */
}

.pkp_navigation_user a:hover {
    background-color: #0098cc;
    /* Slightly darker shade on hover */
    transform: scale(1.05);
    /* Zoom effect on hover */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    /* Add a light shadow for depth */
}

/* Task count badge */
.task_count {
    background-color: #ff4d4d;
    /* Red background for the count */
    color: white;
    font-size: 14px;
    padding: 2px 6px;
    border-radius: 12px;
    /* Rounded badge */
    display: inline-block;
    min-width: 18px;
    text-align: center;
    font-weight: 700;
    /* Bold number */
}

/* General button styles */
/* General button styles */
.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    /* Space between buttons */
    align-items: center;
    margin-top: 20px;
}

/* Register Link inside the buttons container */
.buttons .submit {
    color: #01AEEE;
    /* Theme color */
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    padding: 14px 28px;
    border: 2px solid #01AEEE;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-block;
}

/* Hover effect for Register link */
.buttons .submit:hover {
    background-color: #01AEEE;
    color: white;
    /* Change text color to white on hover */
    transform: scale(1.05);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Register Link inside the buttons container */
.buttons .register {
    color: #01AEEE;
    /* Theme color */
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    padding: 14px 28px;
    border: 2px solid #01AEEE;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-block;
}

/* Hover effect for Register link */
.buttons .register:hover {
    background-color: #01AEEE;
    color: white;
    /* Change text color to white on hover */
    transform: scale(1.05);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* General Navigation Styles */
.pkp_site_nav_menu {

    padding: 15px 0;
    font-family: "Poppins", sans-serif;

}


/* General Link Styling */
a {
    color: #01AEEE;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    padding: 5px 10px;
    border-radius: 8px;
    transform: scale(1.05);
}


button:active {
    transform: scale(0.98);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Disabled Button */
button:disabled {
    background-color: #cccccc;
    color: #666666;
    border: 2px solid #cccccc;
    cursor: not-allowed;
}

/* Header Styling */
h1,
h2,
h3 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    color: #01AEEE;
    text-align: center;
    margin-bottom: 15px;
}

h1 {
    font-size: 32px;
    /* Larger for a more prominent heading */
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

h2 {
    color: #01AEEE;
    font-size: 28px;
    /* Adjusted size */
    margin-bottom: 20px;
}

h3 {
    font-size: 22px;
}

/* List Item Styling */
li {
    font-size: 18px;
    /* Larger font size for readability */
    font-weight: 200;
    line-height: 1.6;
    /* Increased line height for spacing */
    margin-bottom: 10px;
    padding-left: 35px;
    position: relative;
}

.fa-check {
    color: #01AEEE;
    font-size: 20px;
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
}

li:hover {
    /*background-color: #f1f8ff;*/
    transition: background-color 0.3s ease;
}

/* Content Section */
.content {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    /* More rounded corners */
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1);
    max-width: 550px;
    margin: 30px auto;
    text-align: center;
}

.content a {
    display: block;
    text-decoration: none;
    color: #01AEEE;
    font-size: 18px;
    /* Adjusted size */
    font-weight: 700;
    padding: 16px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.content a:hover {
    background-color: #01AEEE;
    color: white;
    transform: scale(1.05);
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.18);
}

/* Notification Base Style */
.cmp_notification {
    padding: 20px 30px;
    border-radius: 8px;
    font-family: "Poppins", sans-serif;
    margin-bottom: 20px;
    font-size: 16px;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

/* Warning Notification */
.cmp_notification.warning {
    background-color: #01AEEE;
    /* Theme color */
    color: white;
    /* White text for contrast */
    border-left: 5px solid #007ba7;
    /* Darker shade for border */
}

/* Hover Effect */
.cmp_notification:hover {
    transform: scale(1.02);
    /* Slight zoom-in effect */
}

/* Notification Icon (Optional) */
.cmp_notification::before {
    content: "⚠️";
    font-size: 24px;
    margin-right: 15px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .cmp_notification {
        padding: 15px 20px;
        font-size: 14px;
    }

    .cmp_notification::before {
        font-size: 20px;
        margin-right: 10px;
    }
}

/* General Navigation Styles */
#navigationUser {
    list-style: none;
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    position: relative;
}

/* User Profile Link */
#navigationUser .profile>a {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    background-color: #01AEEE;
    /* Theme color */
    color: white;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    position: relative;
}

/* Task Count Styling */
.task_count {
    background-color: #ff3b30;
    /* Red badge for notifications */
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 12px;
    position: absolute;
    top: -8px;
    right: -8px;
}

/* Hover Effect */
#navigationUser .profile>a:hover {

    transform: scale(1.05);
}

/* Dropdown Menu */
#navigationUser .profile>ul {
    display: none;
    list-style: none;
    padding: 10px 0;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #FFFFFF;
    border-radius: 8px;
    min-width: 180px;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

/* Show dropdown on hover */
#navigationUser .profile:hover>ul {
    display: block;
}

/* Dropdown items */
#navigationUser .profile>ul li {
    padding: 12px 20px;
}

#navigationUser .profile>ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: block;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border-radius: 8px;
}

/* Hover effect for dropdown items */
#navigationUser .profile>ul li a:hover {
    background-color: #01AEEE;
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #navigationUser .profile>a {
        font-size: 16px;
        padding: 12px 16px;
    }

    #navigationUser .profile>ul li a {
        font-size: 14px;
        padding: 10px 16px;
    }

    .task_count {
        font-size: 10px;
        padding: 2px 5px;
        top: -6px;
        right: -6px;
    }
}

/* General button styles */
/* General button styles */
.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    /* Space between buttons */
    align-items: center;
    margin-top: 20px;
}

/* Register Link inside the buttons container */
.buttons .submit {
    color: #01AEEE;
    /* Theme color */
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    padding: 14px 28px;
    border: 2px solid #01AEEE;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-block;
}

/* Hover effect for Register link */
.buttons .submit:hover {
    background-color: #01AEEE;
    color: white;
    /* Change text color to white on hover */
    transform: scale(1.05);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Register Link inside the buttons container */
.buttons .register {
    color: #01AEEE;
    /* Theme color */
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    padding: 14px 28px;
    border: 2px solid #01AEEE;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-block;
}

/* Hover effect for Register link */
.buttons .register:hover {
    background-color: #01AEEE;
    color: white;
    /* Change text color to white on hover */
    transform: scale(1.05);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* General input field styles */
input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
input[type="tel"],
input[type="search"],
textarea {
    width: 100%;
    /* Full width */
    padding: 12px 20px;
    /* Spacing inside the input box */
    font-size: 16px;
    /* Adjust font size */
    color: #333;
    /* Text color */
    background-color: #f4f4f4;
    /* Light grey background */
    border: 2px solid #ccc;
    /* Border color */
    border-radius: 8px;
    /* Rounded corners */
    box-sizing: border-box;
    /* Ensure padding and border are included in width */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Focus state for input fields */
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="search"]:focus,
textarea:focus {
    border-color: #01AEEE;
    /* Border color changes to theme color */
    box-shadow: 0 0 8px rgba(1, 174, 238, 0.4);
    /* Light glow effect */
    outline: none;
    /* Remove default focus outline */
}

/* Style for required inputs */
input[required],
textarea[required] {
    border: 2px solid #f44336;
    /* Red border for required fields */
}

/* Focus state for required fields */
input[required]:focus,
textarea[required]:focus {
    border-color: #f44336;
    /* Red border when focused */
    box-shadow: 0 0 8px rgba(244, 67, 54, 0.4);
    /* Red glow effect */
}

/* Hover effect for input fields */
input[type="text"]:hover,
input[type="password"]:hover,
input[type="email"]:hover,
input[type="number"]:hover,
input[type="tel"]:hover,
input[type="search"]:hover,
textarea:hover {
    border-color: #01AEEE;
    /* Border color change on hover */
}

/* Style for submit button */
input[type="submit"],
input[type="button"] {
    background-color: #01AEEE;
    /* Background color set to theme color */
    color: white;
    /* White text */
    border: none;
    /* No border */
    padding: 12px 24px;
    /* Padding for the button */
    font-size: 16px;
    /* Font size */
    border-radius: 8px;
    /* Rounded corners */
    cursor: pointer;
    /* Pointer cursor on hover */
    transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Hover effect for submit button */
input[type="submit"]:hover,
input[type="button"]:hover {
    background-color: #0098cc;
    /* Darker theme color on hover */
    transform: scale(1.05);
    /* Slight zoom effect */
}

.app__header {
    background-color: #01AEEE !important;
}