/* Random number suffix: 472 */



.tool-name-472 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.8em;
    color: #333;
}

.calculator-472 {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 50, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    max-width: 300px;
    width: 100%;
}

.display-472 {
    width: 100%;
    height: 60px;
    font-size: 2em;
    text-align: right;
    padding: 0 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 10px;
    color: #333;
    box-sizing: border-box;
    outline: none;
}

.buttons-472 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.btn-472 {
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #f8f9fa;
    color: #333;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
}

.btn-472:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.15);
}

.btn-472:active {
    transform: translateY(0);
}

.operator-472 {
    background: #ffc107;
    color: #333;
}

.operator-472:hover {
    background: #ffb300;
}

.equals-472 {
    background: #28a745;
    color: white;
}

.equals-472:hover {
    background: #218838;
}

.clear-472 {
    background: #dc3545;
    color: white;
}

.clear-472:hover {
    background: #c82333;
}
.tool-info-472{
margin-top: 25px;
    font-family: 'Segoe UI', sans-serif;
    max-width: 340px;
    text-align: left;
    background: linear-gradient(135deg, #ffffffcc, #e6f0facc);
    padding: 20px 25px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    color: #333;
margin-left:10px;
margin-right:10px;
}