.angie-calc-wrapper-698fca4b {
    display: inline-block;
    width: 100%;
    max-width: 320px;
}
.angie-calculator-698fca4b {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 20px;
    box-sizing: border-box;
    width: 100%;
}
.angie-calc-title-698fca4b {
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 500;
}
.angie-calc-display-698fca4b {
    background: #f4f4f4;
    color: #333;
    font-size: 32px;
    text-align: right;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    min-height: 40px;
    word-break: break-all;
    font-family: monospace;
}
.angie-calc-keypad-698fca4b {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.angie-calc-btn-698fca4b {
    background: #e0e0e0;
    border: none;
    border-radius: 8px;
    color: #333;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 0;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: none;
}
.angie-calc-btn-698fca4b:hover {
    background: #d0d0d0;
}
.angie-calc-btn-action-698fca4b {
    background: #ff9800;
    color: #fff;
}
.angie-calc-btn-action-698fca4b:hover {
    background: #e68a00;
}
.angie-calc-btn-zero-698fca4b {
    grid-column: span 2;
}
