/* Password Modal Styles - Exact copy from original built file */

.password-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(2px);
}

.password-modal {
    background: #1a1a2e;
    border: 1px solid rgba(0, 255, 200, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    min-width: 500px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    color: white;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.modal-header h3 {
    margin: 0;
    color: #00ffc8;
    font-size: 1.25rem;
}

.close-btn {
    background: none;
    border: none;
    color: #a8a8b8;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
}

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

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 500;
}

.form-group select {
    width: 100%;
    padding: 0.75rem;
    background: #1a1a2e;
    border: 1px solid rgba(0, 255, 200, 0.3);
    border-radius: 6px;
    color: white;
}

.form-group select:focus {
    outline: none;
    border-color: #00ffc8;
}

.password-preview {
    margin: 1.5rem 0;
}

.password-preview label {
    display: block;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 500;
}

.password-preview > div {
    display: flex;
    gap: 0.5rem;
}

.password-preview input {
    flex: 1;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: white;
    font-family: monospace;
    font-size: 0.9rem;
}

.password-preview button {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: white;
    cursor: pointer;
}

.password-preview button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.password-strength {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 1rem;
    margin: 1rem 0;
    text-align: center;
}

.password-strength > div:first-child {
    color: #00ffc8;
    font-weight: 600;
    font-size: 1.1rem;
}

.password-strength > div:last-child {
    color: #a8a8b8;
    font-size: 0.9rem;
}

.modal-footer {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.modal-footer button {
    padding: 0.625rem 1.25rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
}

.modal-footer button:nth-child(1),
.modal-footer button:nth-child(3) {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.modal-footer button:nth-child(1):hover,
.modal-footer button:nth-child(3):hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-footer button:nth-child(2) {
    background: #00ffc8;
    border: none;
    color: #0f0f23;
}

.modal-footer button:nth-child(2):hover {
    background: #00e6b3;
}