* {
    box-sizing: border-box;
}

body {
    font-size: 16px;
    margin: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    background: transparent;
    border-radius: 15px;
    overflow-x: auto;
    overflow-y: auto;
    color: white;
    min-height: 100vh;
    min-width: 100vw;
    display: block;
    text-align: center;
}

.calculator {
    background: transparent;
    width: 100%;
    height: flex-start;
    display: flex;
    color: white;
    flex-direction: column;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    font-size: 16px;
    box-shadow: none;
}

label {
    margin-bottom: 0px;
    margin-top: 0rem;
    font-size: 16px;
    color: white;
    display: block;
    text-align: center;
}

select,
input {
    width: 100%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    color: white;
    padding: 10px;
    font-size: 12px;
    border-radius: 15px;
    border: 0px solid #313131;
    background-color: #1E1E1E;
    margin-top: 5px;
    text-align: center;
    margin-bottom: 0.5rem;
}

.result-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border: 0px solid #313131;
    background: #1E1E1E;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    gap: 15px;
}

.quote-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.result {
    text-align: left;
}

.result p {
    margin: 2px 0;
    font-size: 12px;
}

.result span {
    display: block;
    margin-top: 2px;
    font-weight: normal;
}

#currency,
#copyQuoteBtn {
    font-size: 12px;
    padding: 6px;
    color: #fff;
    border-radius: 15px;
    box-shadow: none;
    border: 0px solid #1E1E1E;
    background-color: #111;
    width: 80px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

#currency:hover,
#copyQuoteBtn:hover {
    background-color: #fff;
    color: #111;
    transform: translateY(-2px);
}

.service-container {
    position: relative;
}
