/* Custom Modal Styles */
.custom-modal .modal-content {
    background: rgba(17, 25, 40, 0.95);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    color: white;
}

.custom-modal .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
}

.custom-modal .modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.custom-modal .modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem;
}

.custom-modal .modal-title i {
    margin-right: 10px;
    color: #00ff88;
}

.custom-modal .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

/* Form Controls */
.custom-modal .form-label {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.custom-input, .custom-select, .custom-textarea {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 8px !important;
    color: white !important;
    padding: 12px !important;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    width: 100%;
}

.custom-select option {
    background: #1a2234 !important;
    color: white !important;
}

.custom-select option:checked {
    background: #2a3448 !important;
}

.custom-input:focus, .custom-select:focus, .custom-textarea:focus {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: #00ff88 !important;
    box-shadow: 0 0 0 2px rgba(0, 255, 136, 0.2) !important;
}

.custom-input::placeholder, .custom-textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Custom Buttons */
.custom-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.95rem;
    margin: 5px;
    min-width: 120px;
}

.primary-btn {
    background: linear-gradient(45deg, #00ff88, #00b8ff);
    color: #111927;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.4);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(0, 255, 136, 0.6);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(4px);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Action Buttons Container */
.action-buttons {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

/* Toast Customization */
.toast {
    background: rgba(17, 25, 40, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(12px);
    border-radius: 12px;
}

.bg-success {
    background: linear-gradient(45deg, #00ff88, #00b8ff) !important;
}

.bg-danger {
    background: linear-gradient(45deg, #ff0062, #ff4d00) !important;
}

/* Telegram Link */
.telegram-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.telegram-link {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: rgba(0, 136, 204, 0.2);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.telegram-link:hover {
    background: rgba(0, 136, 204, 0.3);
    transform: translateY(-2px);
}
