@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

* {
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
    background: radial-gradient(circle at 50% 50%, #141722 0%, #08090d 100%) !important;
    background-size: 100% 100%;
    background-attachment: fixed;
    background-color: #08090d;
    color: white;
    width: 100%;
    height: 100vh;
    padding: 0;
    margin: 0;
}

main {
    padding: 16px 24px 24px 24px;
}

#et_dashboard {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 80px);
    padding: 20px;
}

#et_dashboard_tools {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 40px 60px;
    border-radius: 24px;
    background: linear-gradient(145deg, #1f1f2e, #2a2a3e);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    max-width: 600px;
}

#et_dashboard_tools button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    width: 120px;
    height: 100px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

#et_dashboard_tools button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
    filter: brightness(1.1);
}

#et_dashboard_tools button .icon {
    font-size: 28px;
}



main input[type="text"],
main input[type="email"],
main input[type="tel"],
main input[type="number"] {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: transparent;
    color: white;
    border: solid 1px white;
    padding-left: 8px;
    padding-right: 8px;
    height: 36px;
    border-radius: 8px;
    font-weight: 14px;
    margin-bottom: 24px;
}

main input[type="text"]:hover,
main input[type="email"]:hover,
main input[type="tel"]:hover,
main input[type="number"]:hover {
background-color: rgba(255, 255, 255, 0.1);
}

main input[type="text"]:focus,
main input[type="email"]:focus,
main input[type="tel"]:focus,
main input[type="number"]:focus {
background-color: rgba(255, 255, 255, 0.1);
}

main label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    user-select: none;
}

main input[type=file]::file-selector-button {
    margin-right: 20px;
    border: none;
    border: solid 1px #8ab4f7;
    background-color: transparent;
    padding: 10px 20px;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s;
}

main input[type=file]::file-selector-button:hover {
    background: #8ab4f7;
    color: #202124;
}

main form button {
    border: solid 1px white;
    background-color: transparent;
    padding: 10px 20px;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.2s;
}

main form button:hover {
    background: #8ab4f7;
    color: #202124;
}

#vCardForm {
    padding-top: 36px;
    padding-bottom: 86px;
    max-width: 400px;
    margin: auto;
}

#vCardForm input {
    display: block;
    width: 100%;
}

#vCardFormSubmit {
    float: right;
}

/* Fix for native selects in dark theme on Windows (dropdown options rendering white on white background) */
select option {
    background-color: #202124 !important;
    color: #ffffff !important;
}