html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

input.form-control:focus {
    border-color: #228B22;
    box-shadow: none;
    outline: none;
}

.environment-heading {
    text-align: center;
    letter-spacing: -.75px;
    margin-bottom: 10px;
    font-size: 48px;
    font-weight: 600;
    line-height: 46px;
}

.environment-sub-heading {
    text-align: center;
    letter-spacing: -.75px;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 350;
    line-height: 46px;
}

.btn-primary {
    background-color: #228B22;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
    width: 100%;
    transition: background-color 0.2s ease-in-out;
}

.btn-primary:hover {
    background-color: #1e751e;
    color: white;
    text-decoration: none;
}

.btn-primary:focus,
.btn-primary:focus-visible,
.btn-primary:focus-within {
    background-color: #228B22;
    box-shadow: 0 0 0 0.25rem rgba(34, 139, 34, 0.35);
    outline: none;
}

.input-group-lg .form-control,
.input-group-lg .input-group-text {
    border-radius: 10px;
}

.custom-input::placeholder {
    color: #bbb;
}

.suffix-text {
    background-color: #f8f8f8;
    font-weight: 400;
    color: #888;
    border-left: none;
    border-radius: 0 10px 10px 0;
}

.environment-tile {
    border: 1px solid #ddd;
    border-radius: 12px;
    background-color: #fff;
    min-width: 450px;
    transition: box-shadow 0.2s ease;
}

.environment-tile:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.environment-icon {
    width: 48px;
    height: 48px;
    background-color: #ccc;
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-open {
    text-decoration: none;
    background-color: transparent;
    color: #343a40; /* Grå ton */
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 7px 15px;
    margin: 10px;
    font-size: 0.875rem; /* Lite mindre text */
    font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-open:hover {
    background-color: #f0f0f0;
    color: #343a40;
    text-decoration: none;
}

.remove-button {
    position: absolute;
    top: -4px;
    right: 0px;
    background: transparent;
    border: none;
    font-size: 1.25rem;
    color: #aaa;
    cursor: pointer;
}

.remove-button:hover {
    color: #ff4d4d;
}

.remove-form {
    position: absolute;
    top: 0;
    right: 0;
}

a {
    color: #4f4f4f;
    text-decoration: none;
}
a:hover {
    color: #228B22;
}