
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    /* This is set on the component now */
    background-color: #f0f2f5; 
    color: #333;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    position: relative;
}

/* Subtle noise texture for a premium feel */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.7" numOctaves="10" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23n)"/></svg>');
    opacity: 0.05;
    pointer-events: none;
    overflow: hidden;
}

* {
    box-sizing: border-box;
}

durood-counter {
    width: 100%;
    max-width: 1200px;
}

@media (max-width: 768px) {
    body {
        padding: 0; /* Remove body padding, let the component handle it */
    }
}
