.app_password_generator_tool{

    background:#020617;
    padding:30px;
    border-radius:16px;
    max-width:800px;
    margin:auto;
    color:white;
    
    }
    
    .app_password_generator_tool h2{
    margin-bottom:20px;
    }
    
    .app_password_generator_field{
    margin-bottom:15px;
    }
    
    .app_password_generator_field h4{
    display:block;
    margin-bottom:5px;
    color:#cbd5f5;
    }
    
    .app_password_generator_field input,
    .app_password_generator_field select{
    
    width:100%;
    padding:12px;
    border-radius:10px;
    border:2px solid #38bdf8;
    background:#020617;
    color:white;
    
    }
    
    #app_password_generator_length_slider{
    margin-bottom:10px;
    }
    
    #app_password_generator_generate{
    
    background:#38bdf8;
    color:#020617;
    border:none;
    padding:12px 20px;
    border-radius:10px;
    font-weight:700;
    cursor:pointer;
    margin-top:10px;
    
    }
    
    .app_password_generator_results{
    margin-top:25px;
    }
    
    .app_password_generator_row{
    
    display:flex;
    justify-content:space-between;
    background:#0f172a;
    padding:15px;
    border-radius:10px;
    margin-bottom:10px;
    
    }
    
    .app_password_generator_row span{
    color:#94a3b8;
    }
    
    .app_password_generator_row strong{
    color:white;
    }
    
    
    .app_password_generator_strength_bar{
    
    width:100%;
    height:12px;
    background:#0f172a;
    border-radius:10px;
    margin-top:10px;
    overflow:hidden;
    
    }
    
    #app_password_generator_strength_fill{
    
    height:100%;
    width:0%;
    background:red;
    transition:0.3s;
    
    }
    
    
    /* Passwort Liste */
    
    .app_password_generator_password{
    
    display:flex;
    justify-content:space-between;
    background:#0f172a;
    padding:12px;
    border-radius:10px;
    margin-top:10px;
    
    }
    
    .app_password_generator_copy{
    
    background:#38bdf8;
    border:none;
    padding:6px 10px;
    border-radius:6px;
    cursor:pointer;
    font-weight:bold;
    
    }