/**
 * All of the CSS for your admin-specific functionality should be
 * included in this file.
 */
.row {
    width: 100%;
    overflow: auto;
}
.column {
    width: 23%;
    float: left;
    text-align: center;
    height: 100px;
    font-size: 20px;
    background: aliceblue;
    margin-left: 20px;
}
.column span {
    position: relative;
    top: 35%;
    left: 0;
}
.column span a {
    text-decoration: none;
}
.kr-mr-alert-dashboard {
    padding: 12px 16px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
    animation: kr-mr-fadeIn 0.3s ease;
}
.kr-mr-alert-dashboard-success {
    background-color: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}
.kr-mr-alert-dashboard-danger {
    background-color: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}
@keyframes kr-mr-fadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}