﻿
.add-dialog {
    border-radius: 24px;
}
.mud-dialog {
    border-radius: 24px;
}

/* Header */
.add-dialog__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.add-dialog__title {
    font-size: 16px;
    font-weight: 500;
}

.add-dialog__close {
    padding: 0;
}

/* Divider */
.add-dialog__divider {
    border: 1px solid var(--border-color-default);
    margin: 8px 0 0;
}

/* Body */
.add-dialog__body {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.add-dialog__form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Labels */
.add-dialog__label {
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 4px;
}

/* Link */
.add-dialog__link {
    display: flex;
    justify-content: flex-end;
}

.add-dialog__view-link {
    color: var(--color-primary);
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    text-decoration: none;
}

/* Switches */
.add-dialog__switches {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

/* Footer */
.add-dialog__footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 12px;
}

/* Buttons */
.add-dialog__btn {
    border-radius: 8px;
    min-width: 100px;
}





/* Dialog wrapper */
.transfer-dialog {
    border-radius: 12px;
}

/* Header */
.dialog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dialog-header-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dialog-icon {
    padding: 12px;
    border-radius: 50%;
    background-color: var(--color-bg-primary);
}

.dialog-title {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Close button */
.close-btn {
    padding: 0 !important;
}

/* Info section */
.info-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 8px;
    border-radius: 8px;
    background-color: #FFFCFA;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-label {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Chips */
.chip-success {
    color: var(--color-success);
    background: var(--color-bg-success);
    padding: 2px 5px;
    border-radius: 5px;
}

.chip-gray {
    color: #000;
    background: #CFD6DD;
    padding: 2px 8px;
    border-radius: 5px;
}

.chip-blue {
    color: #000;
    background: #CDDDFF;
    padding: 2px 8px;
    border-radius: 5px;
}

/* Form */
.form-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Divider */
.custom-divider {
    border: 2px solid var(--border-color-default);
    margin: 12px 0;
}

/* Actions */
.dialog-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 0 12px 12px 12px;
}

    .dialog-actions .mud-button-filled {
        border-radius: 8px;
        min-width: 100px;
    }

    .dialog-actions .mud-button-outlined {
        min-width: 100px;
    }