
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
}

body {
    background-color: #111111;
    color: #e2e8f0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Top Banner */
.top-banner {
    background-color: #242424;
    border-bottom: 1px solid #353535;
    padding: 0 24px;
    height: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 22px;
    height: 100%;
}

.logo-icon {
    color: #60a5fa;
    font-size: 28px;
}

.nav-buttons {
    display: flex;
    gap: 16px;
}

.nav-btn {
    background-color: transparent;
    border: 1px solid #707070;
    color: #cbd5e1;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-btn:hover {
    background-color: #484949;
    border-color: #60fa93;
    color: #f8fafc;
}

/* Main Content */
.container {
    max-width: 1200px;
    width: 100%;
    margin: 32px auto;
    padding: 0 24px;
    flex: 1;
}

.title {
    text-align: center;
    margin-bottom: 24px;
    color: #f8fafc;
    font-weight: 700;
    font-size: 32px;
}

.subtitle {
    text-align: center;
    color: #94a3b8;
    margin-bottom: 32px;
    font-size: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* Textarea */
.textarea-container {
    position: relative;
    margin-bottom: 24px;
}

.paste-textarea {
    width: 100%;
    height: 400px;
    background-color: #1c1c1c;
    border: 1px solid #545454;
    color: #f1f5f9;
    font-size: 12px;
    padding: 20px;
    resize: vertical;
    transition: border-color 0.2s ease;
    line-height: 1.6;
    box-shadow: 0 0 10px #000000;
}

.paste-textarea:focus {
    outline: none;
    border-color: #60fa89;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.15);
}

.char-count {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background-color: rgba(30, 59, 33, 0.8);
    padding: 4px 8px;
    font-size: 14px;
    color: #94b89c;
    border: 1px solid #5b5b5b;
}

/* Password Field */
.password-container {
    margin-bottom: 32px;
}

.password-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #cbd5e1;
    font-size: 16px;
}

.password-input {
    width: 80%;
    background-color: #1c1c1c;
    border: 1px solid #545454;
    color: #f1f5f9;
    font-size: 16px;
    padding: 14px 16px;
    transition: border-color 0.2s ease;
}

.password-input:focus {
    outline: none;
    border-color: #60fa60;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.15);
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.action-btn {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 160px;
    justify-content: center;
}

.gen-btn {
    background-color: #1c1c1c;
    color: white;
    display: inline-block;
}

.gen-btn:hover {
    background-color: #202020;
}


.bin-btn {
    background-color: #26dc6f;
    color: white;
}

.bin-btn:hover {
    background-color: #1b9b4e;
}

.reset-btn {
    background-color: #1c1c1c;
    color: white;
}

.reset-btn:hover {
    background-color: #202020;
}

.delete-select {
    background-color: #1c1c1c;
    color: white;
    border: 1px solid #545454;
}

/* Footer */
footer {
    text-align: center;
    padding: 24px;
    color: #94a3b8;
    font-size: 14px;
    border-top: 1px solid #335537;
    margin-top: 32px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .title {
        font-size: 26px;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .action-btn {
        width: 100%;
    }
    
    .nav-buttons {
        gap: 8px;
    }
    
    .nav-btn {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .logo {
        font-size: 18px;
    }
}