/* Password Generator Plugin Styles */

/* Center the whole generator */
#password-generator {
    max-width: 600px;
    margin: 40px auto;
    padding: 32px;
	background: linear-gradient(to bottom, #4fd1ff 0%, #002766 100%);
    border-radius: 18px;
	box-shadow: 0 8px 32px rgba(0, 39, 102, 0.1), 0 1.5px 4px rgba(0,0,0,0.07);
    font-family: system-ui, sans-serif;
	color: #fff;

}

/* Align form rows horizontally */
.row {
    display: flex;
    align-items: center;
    margin-bottom: 1em;
}

/* Make all labels the same width for alignment */
.row > label {
    width: 170px;
    margin-right: 10px;
    font-weight: normal;
    white-space: nowrap;
}

/* Style for the shorter input fields */
.short-input {
    width: 160px;
    min-width: 80px;
    display: inline-block;
    margin-left: 0;
    margin-right: 0;
    padding: 6px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

/* Make sure input boxes are inline with the label */
input[type="text"].short-input,
input[type="number"] {
    vertical-align: middle;
}

/* Style radio button group for inline look */
.radio-group {
    display: flex;
    gap: 16px;
}

/* Optional: Style the radio labels for spacing */
.radio-group label {
    margin-right: 12px;
}

/* Main password output box */
#password {
    width: 98%;
    padding: 8px;
    font-size: 1.2em;
    margin-bottom: 18px;
    border-radius: 5px;
    border: 1px solid #bbb;
}

/* Button styles */
button, input[type="button"] {
    padding: 8px 22px;
    border-radius: 4px;
    border: none;
    background: #334bb0;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.18s;
    margin-top: 10px;
    margin-right: 8px;
}
button:hover, input[type="button"] :hover {
    background: #233480;
}

/* Responsive: shrink on small screens */
@media (max-width: 650px) {
    #password-generator {
        padding: 12px;
        max-width: 98vw;
    }
    .row > label {
        width: 100px;
        font-size: 0.98em;
    }
    .short-input {
        width: 90px;
    }
}
/* General Button Styling */
.pg-password-generator-container button,
.pg-password-generator-container input[type="button"] {
    background-color: #0073aa;
    color: #fff;
    border: none;
    padding: 8px 18px;
    font-size: 1em;
    border-radius: 4px;
    cursor: pointer;
    transition: box-shadow 0.1s, transform 0.1s;
    margin-right: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.10);
	margin-bottom: 16px;  /* Adds space below each button */
}

.pg-password-generator-container button:active,
.pg-password-generator-container input[type="button"] :active {
    transform: translateY(2px) scale(0.96);
    box-shadow: 0 1px 2px rgba(0,0,0,0.14) inset;
}
.pg-title {
    text-align: center;
    margin-bottom: 18px;
    font-size: 2em; /* Adjust as you like */
    font-weight: bold;
    background: linear-gradient(to bottom, #4fd1ff 0%, #002766 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.bold-text {
    font-weight: bold;
}
body {
    background: #000 !important;
    color: #fff; /* Makes all text white by default for readability */
}