.hypercon-notification-bar {
    background-color: #DB0D0D;
    color: #fff;
    padding: 10px;
    text-align: center;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 9999;

    font-size: 13px;
    line-height: 20px;
    transition: all 0.2s;

}
.hypercon-notification-bar.hypercon-notification-bar-closed{
    padding: 2px;
}


.hypercon-notification-bar b{
    font-weight: 500;
}

.hypercon-notification-wrapper-admin {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.hypercon-notification-wrapper-admin h1,
.hypercon-notification-wrapper-admin h2 {
    color: #333;
    border-bottom: 2px solid #DB0D0D;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.hypercon-notification-wrapper-admin h1 {
    font-size: 28px;
}

.hypercon-notification-wrapper-admin h2 {
    font-size: 24px;
    font-weight: 400;
}

.hypercon-notification-wrapper-admin label {
    display: block;
    font-weight: bold;
    margin-top: 15px;
    color: #555;
}

.hypercon-notification-wrapper-admin input[type="text"],
.hypercon-notification-wrapper-admin input[type="datetime-local"],
.hypercon-notification-wrapper-admin textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
    background-color: #fff;
}

.hypercon-notification-wrapper-admin textarea {
    height: 120px;
}

.hypercon-notification-wrapper-admin input[type="submit"],
.hypercon-notification-wrapper-admin .button {
    background-color: #DB0D0D;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.2s;
}
.hypercon-notification-wrapper-admin input[type="submit"]:hover,
.hypercon-notification-wrapper-admin .button:hover {
    background-color: #ad0b0b !important;
    color: #fff;

}

.hypercon-notification-wrapper-admin input[type="submit"]:hover,
.hypercon-notification-wrapper-admin .button:hover {
    background-color: #357ABD;
}

.hypercon-notification-wrapper-admin .button-secondary {
    background-color: #6c757d;
}

.hypercon-notification-wrapper-admin .button-secondary:hover {
    background-color: #5a6268;
}

.hypercon-notification-wrapper-admin .wp-list-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.hypercon-notification-wrapper-admin .wp-list-table thead {
    background-color: #DB0D0D;
    color: #fff;
}

.hypercon-notification-wrapper-admin .wp-list-table th,
.hypercon-notification-wrapper-admin .wp-list-table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    text-align: left;
}
.hypercon-notification-wrapper-admin .wp-list-table th {
    color:white;
}
.hypercon-notification-wrapper-admin .wp-list-table tbody tr:nth-child(even) {
    background-color: #f4f4f4;
}

.hypercon-notification-wrapper-admin .wp-list-table tbody tr:hover {
    background-color: #e9e9e9;
}

.hypercon-notification-wrapper-admin .wp-list-table a {
    color: #DB0D0D;
    text-decoration: none;
}

.hypercon-notification-wrapper-admin .wp-list-table a:hover {
    text-decoration: underline;
}

.hypercon-notification-wrapper-admin .wp-list-table th {
    font-weight: bold;
    text-transform: uppercase;
}

.hypercon-notification-wrapper-admin form {
    max-width: 800px;
    /* margin: 0 auto; */
}
.hypercon-notification-wrapper-admin form textarea{
    min-height:100px;
}
.hypercon-notification-wrapper-admin .wrap > form {
    border: 1px solid #ddd;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
}

.hypercon-notification-bar-close{
    background: transparent;
    border: 0px;
    padding: 0px;
    width: 24px;
    height: 24px;
    border: 1px solid white;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translate(0px, -50%);
}
.hypercon-notification-bar-close svg{
    width: 12px;
    height: auto;
    fill: white;

}

.hypercon-notification-bar-relative{
    position: relative;
    padding-right: 100px;
}

.hypercon-notification-bar-closed{

}
.hypercon-notification-bar-open-button{
    display: none;
 background-color: transparent;
 width: 20px;
 height: 20px;

 position: absolute;
    left: 50%;
    transform: translate(-50%, 0);

    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 25px solid #DB0D0D;
    cursor: pointer;
}