/* ======================================================
   GLOBAL STYLES
   ====================================================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    min-height: 100vh;
    background: var(--color-background);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

.app {
    width: min(1440px, 100%);
    min-height: 100vh;
    margin: 0 auto;
    background: var(--color-background);
}

.dashboard {
    padding: var(--space-lg);
}

@media (max-width: 700px) {
    .dashboard {
        padding: var(--space-md);
    }
}

.selected-hole-visual {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 260px;
    margin-bottom: 16px;
    padding: 16px;

    background: white;

    border: 1px solid rgba(22, 84, 154, 0.1);
    border-radius: 12px;
}

.selected-hole-visual[hidden] {
    display: none;
}

.selected-hole-visual img {
    display: block;

    width: 100%;
    max-width: 280px;
    max-height: 300px;

    object-fit: contain;
}