/* 
 * Hokumanu Voice Generator Styles
 * Clean, professional design matching Hokumanu.com aesthetic
 */

.my-ct-voice-container {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    color: #2c3e50;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header & Titles */
.my-ct-voice-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eaeaea;
}

.my-ct-voice-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}

.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.my-ct-voice-header .subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin: 0;
}

/* Generator Header */
.generator-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 25px 30px;
    margin-bottom: 30px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.2);
}

.header-left h2 {
    margin: 0;
    font-size: 1.8rem;
    color: white;
}

.tier-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-left: 10px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.user-welcome {
    margin: 8px 0 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.usage-display {
    display: flex;
    gap: 25px;
    background: rgba(255, 255, 255, 0.15);
    padding: 15px 25px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.usage-item {
    text-align: center;
}

.usage-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
}

.usage-value {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
}

/* Method Introduction */
.method-intro {
    background: #f8f9fa;
    border-left: 4px solid #667eea;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
}

.method-intro h3 {
    color: #2c3e50;
    margin-top: 0;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.method-icon {
    font-size: 1.6rem;
}

.method-benefits {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.method-benefits li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.method-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.method-benefits strong {
    color: #2c3e50;
}

.personal-note {
    background: rgba(102, 126, 234, 0.1);
    padding: 15px;
    border-radius: 6px;
    margin-top: 20px;
    border-left: 3px solid #764ba2;
}

/* Alerts */
.alert {
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid transparent;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-color: #c3e6cb;
    color: #155724;
}

.alert-error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border-color: #f5c6cb;
    color: #721c24;
}

.alert-info {
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    border-color: #bee5eb;
    color: #0c5460;
}

.alert-warning {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-color: #ffeaa7;
    color: #856404;
}

.alert-content {
    display: flex;
    flex-direction: column;
}

.alert-content h3 {
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
}

.alert-icon {
    font-size: 1.4rem;
}

.alert-actions {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.file-info {
    font-size: 0.9rem;
    color: rgba(21, 87, 36, 0.7);
    font-weight: 500;
}

/* Generator Form */
.generator-form {
    background: white;
    border-radius: 15px;
    padding: 35px;
    margin-bottom: 35px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #eaeaea;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.05rem;
}

.required {
    color: #e74c3c;
    font-weight: bold;
}

/* Select Dropdowns */
.select-wrapper {
    position: relative;
}

.form-select {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background-color: white;
    color: #2c3e50;
    appearance: none;
    transition: border-color 0.3s ease;
    cursor: pointer;
}

.form-select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #7f8c8d;
}

/* Sample Player & Speed Info */
.sample-player {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.btn-sample {
    background: #667eea;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s ease;
}

.btn-sample:hover {
    background: #5a6fd8;
}

.sample-icon {
    font-size: 0.9rem;
}

.sample-note {
    font-size: 0.9rem;
    color: #7f8c8d;
}

.speed-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

.speed-classification {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.speed-classification.slow {
    background: #3498db;
    color: white;
}

.speed-classification.normal {
    background: #2ecc71;
    color: white;
}

.speed-classification.fast {
    background: #e74c3c;
    color: white;
}

.speed-note {
    font-size: 0.85rem;
    color: #7f8c8d;
}

/* Text Area */
.form-textarea {
    width: 100%;
    padding: 18px;
    font-size: 1rem;
    line-height: 1.6;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background-color: white;
    color: #2c3e50;
    transition: border-color 0.3s ease;
    resize: vertical;
    font-family: inherit;
}

.form-textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-textarea:disabled {
    background-color: #f8f9fa;
    cursor: not-allowed;
    opacity: 0.7;
}

.textarea-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.char-counter {
    font-size: 0.9rem;
    color: #7f8c8d;
}

#char-count {
    font-weight: 700;
    color: #2c3e50;
}

.textarea-actions {
    display: flex;
    gap: 10px;
}

.btn-text-action {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    padding: 6px 15px;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #5a6c7d;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-text-action:hover {
    background: #e9ecef;
    color: #2c3e50;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 1.05rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
    background: #f8f9fa;
    color: #5a6c7d;
    border: 1px solid #e0e0e0;
}

.btn-secondary:hover {
    background: #e9ecef;
    color: #2c3e50;
}

.btn-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.btn-generate {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.generate-icon {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.generate-sub {
    font-size: 0.9rem;
    font-weight: normal;
    opacity: 0.9;
}

.form-actions {
    margin-top: 30px;
}

/* Pronunciation Guide */
.pronunciation-guide {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 35px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #eaeaea;
}

.pronunciation-guide h3 {
    color: #2c3e50;
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.guide-icon {
    font-size: 1.6rem;
}

.characters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin: 25px 0;
}

.char-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.char-item:hover {
    transform: translateY(-2px);
    background: #e9ecef;
}

.char-symbol {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    color: #2c3e50;
    min-width: 60px;
    font-size: 1.1rem;
}

.char-arrow {
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}

.char-pronunciation {
    color: #5a6c7d;
    font-style: italic;
    flex: 1;
}

.guide-note {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eaeaea;
}

/* Quick Tips */
.quick-tips {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #eaeaea;
}

.quick-tips h3 {
    color: #2c3e50;
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    margin-bottom: 25px;
}

.tips-icon {
    font-size: 1.6rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

@media (max-width: 768px) {
    .tips-grid {
        grid-template-columns: 1fr;
    }
}

.tip {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.tip strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 8px;
    font-size: 1.05rem;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0;
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 2px solid #eaeaea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: #667eea;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #667eea;
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card h3 {
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.4rem;
}

.card-icon {
    font-size: 1.8rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    text-align: left;
}

.feature-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #5a6c7d;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

/* Connect Prompt */
.connect-prompt {
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, #667eea10 0%, #764ba210 100%);
    border-radius: 15px;
    border: 2px dashed #667eea;
    margin: 40px 0;
}

.connect-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.connect-prompt h2 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.connect-prompt p {
    color: #7f8c8d;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.note {
    font-size: 0.9rem;
    color: #95a5a6;
    margin-top: 15px;
}

/* Status Bar */
.status-bar {
    background: #f8f9fa;
    padding: 15px 25px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    border: 1px solid #eaeaea;
}

.status-connected {
    color: #2ecc71;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-connected:before {
    content: "●";
    color: #2ecc71;
    font-size: 1.2rem;
}

.logout-link {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.logout-link:hover {
    color: #c0392b;
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .my-ct-voice-container {
        padding: 15px;
    }
    
    .my-ct-voice-header h1 {
        font-size: 2rem;
    }
    
    .generator-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 20px;
    }
    
    .usage-display {
        width: 100%;
        justify-content: space-around;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}
/* Pause Instructions Section */
.pause-instructions-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 35px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #eaeaea;
}

.pause-instructions-section h3 {
    color: #2c3e50;
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.pause-icon {
    font-size: 1.6rem;
}

.pause-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.pause-example {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #667eea;
    transition: transform 0.3s ease;
}

.pause-example:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.15);
}

.example-code {
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 8px;
}

.example-code code {
    background: transparent;
    padding: 0;
    color: inherit;
}

.example-desc {
    color: #5a6c7d;
    font-size: 0.95rem;
}

.pause-note {
    background: rgba(102, 126, 234, 0.1);
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 3px solid #764ba2;
}

.pause-note strong {
    color: #2c3e50;
}

.pause-note code {
    background: rgba(102, 126, 234, 0.15);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: #667eea;
}

.pause-tip {
    font-size: 0.95rem;
    color: #2ecc71;
    font-weight: 500;
    padding: 12px;
    background: rgba(46, 204, 113, 0.1);
    border-radius: 6px;
    margin-top: 15px;
    border-left: 3px solid #2ecc71;
}

/* Quick Tips (Updated for 4 items) */
.quick-tips {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 35px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #eaeaea;
}

.quick-tips h3 {
    color: #2c3e50;
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    margin-bottom: 25px;
}

.tips-icon {
    font-size: 1.6rem;
}

.tips-grid.compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

@media (max-width: 768px) {
    .tips-grid.compact {
        grid-template-columns: 1fr;
    }
    .pause-examples {
        grid-template-columns: 1fr;
    }
}

.tip {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #667eea;
    transition: transform 0.3s ease;
}

.tip:hover {
    transform: translateY(-2px);
}

.tip strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 8px;
    font-size: 1.05rem;
}

/* Pronunciation Guide */
.pronunciation-guide {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #eaeaea;
}

.pronunciation-guide h3 {
    color: #2c3e50;
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.guide-icon {
    font-size: 1.6rem;
}

.characters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin: 25px 0;
}

.char-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.char-item:hover {
    transform: translateY(-2px);
    background: #e9ecef;
}

.char-symbol {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    color: #2c3e50;
    min-width: 60px;
    font-size: 1.1rem;
}

.char-arrow {
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}

.char-pronunciation {
    color: #5a6c7d;
    font-style: italic;
    flex: 1;
}

.guide-note {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eaeaea;
}

/* ==================== */
/* USAGE DISPLAY - VERTICAL STACK */
/* ==================== */

/* Usage display container */
.header-right .usage-display {
    background: transparent;
    padding: 15px;
    margin-top: 10px;
}

/* Usage items - stack vertically */
.header-right .usage-item {
    display: flex;
    flex-direction: column; /* Stack vertically */
    align-items: flex-start; /* Align left */
    margin-bottom: 20px; /* More space between sections */
    padding: 0;
}

/* Remove fixed heights */
.header-right .usage-item,
.header-right .usage-label,
.header-right .usage-value {
    height: auto !important;
}

/* Labels - centered above values */
.header-right .usage-label {
    font-weight: 700;
    color: #ffffff;
    font-size: 16px !important;
    margin: 0 0 4px 0; /* Space below label */
    text-align: left;
    width: auto; /* Auto width */
    display: block;
}

/* Values - large and centered under label */
.header-right .usage-value {
    color: #ffffff !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    font-weight: 800;
    font-size: 24px !important; /* Large */
    line-height: 1.2;
    display: block;
    width: 100%;
}

/* Reset indicator - place next to usage value */
.header-right .usage-item:first-child {
    position: relative; /* For positioning reset indicator */
    padding-right: 140px; /* Space for reset indicator */
}

.header-right .reset-indicator {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 16px !important;
    padding: 8px 16px;
    border-radius: 20px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%); /* Center vertically */
    font-weight: 700;
    white-space: nowrap;
}

/* Reset info section */
.header-right .reset-info {
    margin: 0;
    color: #ffffff;
    border-top: none !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column; /* Stack vertically */
    align-items: flex-start;
}

/* Reset info label */
.header-right .reset-info .usage-label {
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 700;
    font-size: 16px !important;
    margin: 0 0 4px 0;
    text-align: left;
    width: auto;
    display: block;
}

/* Reset info value */
.header-right .reset-info .usage-value {
    font-size: 20px !important;
    font-weight: 800;
    line-height: 1.2;
    display: block;
    width: 100%;
}
/* Responsive centered grid */
.pricing-grid-centered {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, max-content));
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* For mobile */
@media (max-width: 768px) {
    .pricing-grid-centered {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

.tier-icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

.tier-icon img {
    width: 64px; /* Adjust this value to make smaller/larger */
    height: 64px; /* Adjust this value to make smaller/larger */
    border-radius: 4px;
    object-fit: cover;
    vertical-align: middle;
}

.pricing-card h3 {
    display: flex;
    align-items: center;
}