/* Alert container styles */
.alert {
	padding: 5px 25px;
    border-radius: 4px;
    position: relative;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    flex-wrap: nowrap;
    justify-content: flex-start;
}
/* Specific color and background for the success alert */
.alert-success {
    background-color: #dff0d8;  /* Light green background */
    border-color: #d6e9c6;  /* Darker green border */
    color: #3c763d;  /* Dark green text */
	border: 1px solid #3c763d;
    font-size: initial;
} 

.close:hover {
    color: #a94442; /* Change color on hover for a subtle effect */
}
 
/* Additional media queries for responsive design */
@media (max-width: 767px) {
    .alert {
        flex-direction: column; /* Stack items on smaller screens */
        align-items: flex-start; /* Align items to the left */
    }
}


/* Alert container styles */
.alert {
    padding: 5px 25px;
    border-radius: 4px;
    position: relative;
    margin-bottom: 20px;
    display: flex ;
    align-items: center;
    flex-direction: row-reverse;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: flex-end;
}

/* Specific styles for danger alerts */
.alert-danger {
    background-color: #f2dede; /* Light red background */
    border-color: #ebccd1; /* Darker red border */
    color: #a94442; /* Dark red text */
    border: 1px solid #a94442;
    font-size: initial;
}

/* Close button styles */
.close {
    background: none; /* No background for the button */
    border: none; /* No borders */
    color: inherit; /* Use the alert's color for visibility */
    font-size: 20px; /* Larger size for the button */
    margin-left: auto; /* Push button to the right */
    cursor: pointer; /* Change cursor on hover */
}

.close:hover {
    color: #c9302c; /* Slightly darker color on hover for feedback */
}

/* Icon styles */
.ace-icon {
    margin-right: 8px; /* Space between the icon and text */
}

.fa-cross {
    color: #a94442; /* Dark red color for the cross icon */
}


#wpbody-content form > div input{ margin-right: 15px;    margin-top: 10px;
    margin-bottom: 10px;}
#wpbody-content form > div > a {
    padding: 4px 15px;
    background-color: #a72828;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}
table#sample-table-1.dataTable thead th{ text-align: center; }
#wpbody-content .page-header > h1 a{      font-size: 15px;display: inline-block;
    margin-left: 5px;}

/* Additional media queries for responsive design */
@media (max-width: 767px) {
    .alert {
        flex-direction: column; /* Stack items vertically */
        align-items: flex-start; /* Align items to the left */
    }
}