.g4a-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 6px;
    border-left: 4px solid transparent;
    margin-bottom: 16px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    background-color: #1a1a1a;
    color: #e0e0e0;
}

.g4a-alert.hidden {
    display: none;
}

.g4a-alert-icon {
    flex-shrink: 0;
    margin-top: 1px;
    display: flex;
    align-items: center;
}

.g4a-alert-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.g4a-alert-title {
    font-weight: 600;
    font-size: 14px;
    display: block;
    margin-bottom: 2px;
}

.g4a-alert-msg {
    font-size: 14px;
    color: #c0c0c0;
}

.g4a-alert-errors {
    margin: 6px 0 0 0;
    padding-left: 18px;
    color: #c0c0c0;
}

.g4a-alert-errors li {
    margin-bottom: 3px;
}

/* danger / error */
.g4a-alert-danger {
    background-color: #1f0a0a;
    border-left-color: #cc2222;
    color: #f5c6c6;
}
.g4a-alert-danger .g4a-alert-icon {
    color: #e03333;
}
.g4a-alert-danger .g4a-alert-title {
    color: #ff4444;
}
.g4a-alert-danger .g4a-alert-msg,
.g4a-alert-danger .g4a-alert-errors {
    color: #e8a8a8;
}

/* success */
.g4a-alert-success {
    background-color: #081a0e;
    border-left-color: #22883a;
    color: #b8f0c8;
}
.g4a-alert-success .g4a-alert-icon {
    color: #33cc55;
}
.g4a-alert-success .g4a-alert-title {
    color: #44ee66;
}
.g4a-alert-success .g4a-alert-msg,
.g4a-alert-success .g4a-alert-errors {
    color: #99ddb0;
}

/* warning */
.g4a-alert-warning {
    background-color: #1a1200;
    border-left-color: #cc8800;
    color: #f5dfa0;
}
.g4a-alert-warning .g4a-alert-icon {
    color: #e6a800;
}
.g4a-alert-warning .g4a-alert-title {
    color: #ffcc00;
}
.g4a-alert-warning .g4a-alert-msg,
.g4a-alert-warning .g4a-alert-errors {
    color: #d4c070;
}

/* info */
.g4a-alert-info {
    background-color: #0a0f1f;
    border-left-color: #1a5fd4;
    color: #b0c8f8;
}
.g4a-alert-info .g4a-alert-icon {
    color: #3377ee;
}
.g4a-alert-info .g4a-alert-title {
    color: #5599ff;
}
.g4a-alert-info .g4a-alert-msg,
.g4a-alert-info .g4a-alert-errors {
    color: #8ab0e8;
}

.g4a-alert.text-center {
    text-align: center;
    justify-content: center;
}
.g4a-alert.text-center .g4a-alert-icon {
    display: none;
}