.alert-container {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    background:rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
    z-index: 999999;
    width: 100%;
    height: 100vh;
}
.alert-content {
    background:#FFF;
    -moz-border-radius:3px;
    -webkit-border-radius:3px;
    border-radius:3px;
    -khtml-border-radius:3px;
    z-index:99999999;
    min-width:200px;
    min-height:50px;
    max-width:75%;
    padding: 15px 20px;
}
.alert-content p {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #333;
    margin: 10px 0 20px 0;
    font-weight: bold;
    text-align: center;
}
.alert-content a {
    font-family: Helvetica, Arial, sans-serif;
    -moz-border-radius:3px;
    -webkit-border-radius:3px;
    border-radius:3px;
    -khtml-border-radius:3px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 11px;
    text-align: center;
    margin: 10px;
    color: #F6FAF7;
    display: block;
    margin: 0 auto;
    width: 100px;
    background: #579959;
    text-decoration: none;
    height: 30px;
    line-height: 30px;
}
.alert-content a:hover {
    background: #477F4A;
}

/* Alert Type Styles */
.alert-type-success {
    border-left: 4px solid #4CAF50;
}

.alert-type-warning {
    border-left: 4px solid #FF9800;
}

.alert-type-error {
    border-left: 4px solid #F44336;
}

.alert-type-info {
    border-left: 4px solid #2196F3;
}

.alert-icon {
    font-size: 24px;
    text-align: center;
    margin-bottom: 15px;
}

/* Confirm Dialog Styles */
.confirm-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.confirm-buttons .alert-button {
    width: auto;
    min-width: 100px;
    margin: 0;
}

.confirm-buttons .confirm-cancel {
    background: #ccc !important;
    color: #333;
}

.confirm-buttons .confirm-cancel:hover {
    background: #bbb !important;
}