

.macro-container{
    align-items: center;
    padding:25px;
    max-width:800px;
    border-radius:10px;
    box-shadow:0 4px 12px rgba(0,0,0,0.12);
}



.unit-buttons{
    display:flex;
    gap:10px;
    margin-bottom:15px;
}

.unit-buttons button{
    flex:1;
    padding:8px;
    border:none;
    border-radius:6px;
    background:#999;
    color:white;
    cursor:pointer;
}

.unit-buttons button:disabled{
    background:#f34f3a;
    cursor:default;
}

label{
    display:block;
    margin-top:12px;
    font-weight:bold;
}

input, select{
    width:100%;
    padding:8px;
    margin-top:5px;
    border-radius:6px;
    border:1px solid #ccc;
}

button.calculate{
    margin-top:18px;
    width:100%;
    padding:10px;
    border:none;
    border-radius:6px;
    background:#f34f3a;
    color:white;
    font-size:16px;
    cursor:pointer;
}

button.calculate:hover{
    background:#9e2c1d;
}

.results{
    margin-top:20px;
    padding:15px;
    background:#f34f3a;
    border-radius:6px;
}

.hidden{
    display:none;
}

.error{
    color:red;
    font-size:13px;
}



.macro-input {
    line-height:14px;
}



.tabs{
display:flex;
flex-wrap:wrap;
gap:6px;
margin-top:10px;
margin-bottom:10px;
}

.tab{
padding:6px 10px;
border:none;
background:#e0e6ff;
border-radius:4px;
cursor:pointer;
}

.tab.active{
background:#0077ff;
color:white;
}