/*
Theme Name: OceanWP Child Theme
Theme URI: https://oceanwp.org/
Description: OceanWP WordPress theme. Sample child theme.
Author: OceanWP
Author URI: https://oceanwp.org/
Template: oceanwp
Version: 1.0
*/
a[href*="/feed"] {
    display: none !important;
}


/* Parent stylesheet should be loaded from functions.php not using @import */
.custom--form {
    max-width: 300px;
    margin: 0 auto;
    padding: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.custom--form label {
    display: block;
    margin-bottom: .5em;
}

.custom--form input[type="text"],
.custom--form input[type=""] {
    width: 100%;
    padding: .5em;
    margin-bottom: 1em;
}

.custom--form input[type="submit"] {
    display: block;
    width: 100%;
    padding: .5em;
    background: #0073aa;
    border: none;
    color: #fff;
    font-size: 1em;
    cursor: pointer;
}

.custom--form input[type="submit"]:hover {
    background: #005177;
}

.-message {
    text-align: center;
    margin: 50px auto;
    max-width: 500px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #f9f9f9;
}

.-message h1 {
    margin-bottom: 20px;
}

.-message p {
    font-size: 16px;
}

/* Custom  Button Styles */
.-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full height */
}

.-button {
    padding: 20px 40px; /* Increase padding for a larger button */
    margin-top: 20px;
    font-size: 1.5em; /* Increase font size */
}


/* Custom  Reset Form Styles */
.-reset-form {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.-reset-form label {
    display: block;
    margin-bottom: 5px;
}

.-reset-form input[type="text"],
.-reset-form input[type="submit"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.-reset-form input[type="submit"] {
    background-color: #0073aa;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.-reset-form input[type="submit"]:hover {
    background-color: #005177;
}

/* Custom Registration Form Styles */
.registration-form {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.registration-form label {
    display: block;
    margin-bottom: 5px;
}

.registration-form input[type="text"],
.registration-form input[type=""],
.registration-form input[type="email"],
.registration-form input[type="date"],
.registration-form input[type="submit"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.registration-form input[type="submit"] {
    background-color: #0073aa;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.registration-form input[type="submit"]:hover {
    background-color: #005177;
}


/* Custom  Button Styles */
.-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full height */
}

.custom--button {
    padding: 20px 40px; /* Increase padding for a larger button */
    margin-top: 20px;
    font-size: 1.5em; /* Increase font size */
    color: #fff; /* White text color */
    background-color: #0073aa; /* Blue background color */
    text-decoration: none; /* Remove underline */
    border: none; /* Remove border */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transition for hover effect */
}

.custom--button:hover {
    background-color: #005177; /* Darker blue on hover */
    transform: scale(1.05); /* Slightly increase size on hover */
}



/* Custom Profile Edit Form Styles */
.profile-edit-form {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.profile-edit-form label {
    display: block;
    margin-bottom: 5px;
}

.profile-edit-form input[type="text"],
.profile-edit-form input[type=""],
.profile-edit-form input[type="email"],
.profile-edit-form input[type="date"],
.profile-edit-form input[type="file"],
.profile-edit-form input[type="submit"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.profile-edit-form input[type="submit"] {
    background-color: #0073aa;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.profile-edit-form input[type="submit"]:hover {
    background-color: #005177;
}

.custom-ed-s {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.custom-ed-s th, .custom-ed-s td {
    padding: 10px;
    border: 1px solid #ccc;
}

.custom-ed-s th {
    background-color: #f9f9f9;
    text-align: left;
}

+.custom-ed-s {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.custom-ed-s th, .custom-ed-s td {
    padding: 10px;
    border: 1px solid #ccc;
}

.custom-ed-s th {
    background-color: #f9f9f9;
    text-align: left;
}

/* Pagination Links Styling */
.pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.pagination a, .pagination span {
    display: block;
    padding: 8px 12px;
    border: 1px solid #ccc;
    color: #0073aa;
    text-decoration: none;
    margin: 0 5px;
}

.pagination a:hover, .pagination .current {
    background-color: #0073aa;
    color: #fff;
}

/* Search Form Styling */
.-search-form {
    margin-bottom: 20px;
    text-align: center;
}

.-search-form input[type="text"] {
    padding: 8px;
    width: 250px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.-search-form input[type="submit"] {
    padding: 8px 16px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.-search-form input[type="submit"]:hover {
    background-color: #005177;
}

.custom-ed-s {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.custom-ed-s th, .custom-ed-s td {
    padding: 10px;
    border: 1px solid #ccc;
}

.custom-ed-s th {
    background-color: #f9f9f9;
    text-align: left;
}

/* Pagination Links Styling */
.pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.pagination a, .pagination span {
    display: block;
    padding: 8px 12px;
    border: 1px solid #ccc;
    color: #0073aa;
    text-decoration: none;
    margin: 0 5px;
}

.pagination a:hover, .pagination .current {
    background-color: #0073aa;
    color: #fff;
}

/* Search Form Styling */
.-search-form {
    margin-bottom: 20px;
    text-align: center;
}

.-search-form input[type="text"] {
    padding: 8px;
    width: 250px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.-search-form input[type="submit"] {
    padding: 8px 16px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.-search-form input[type="submit"]:hover {
    background-color: #005177;
}