
/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Body styling */
body {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #fff;
    color: #202124;
}

/* Header styling */
header {
    padding: 20px;
    display: flex;
    justify-content: flex-end;
}

.top-right .login-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f1f3f4;
    text-decoration: none;
    color: #5f6368;
    transition: background-color 0.3s;
}

.top-right .login-icon:hover {
    background-color: #e8eaed;
}

/* Main content styling */
main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.logo {
    margin-bottom: 20px;
}

.logo h1 {
    font-size: 64px;
    color: #4285f4;
    text-align: center;
}

.search-container {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.search-bar {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #dfe1e5;
    border-radius: 24px;
    box-shadow: 0 1px 6px rgba(32, 33, 36, 0.1);
    font-size: 16px;
    outline: none;
    transition: box-shadow 0.3s;
}

.search-bar:focus {
    box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
}

.buttons {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    background-color: #e9ecef;
    //background-color: #f8f9fa;
    color: #3c4043;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    //background-color: #e8eaed;
    background-color: #dae0e5;
}

/* Footer styling */
footer {
    padding: 20px;
    background-color: #f2f2f2;
    text-align: center;
}

.footer-links a {
    margin: 0 10px;
    color: #70757a;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}

svg {
    stroke: currentColor; /* Default color */
  }
  
svg.disabled {
    stroke: #c0c0c0; /* Light gray for disabled state */
    opacity: 0.6; /* Optional: reduces opacity for a more "disabled" look */
}

#bankdata strong {
    display: inline-block;
    width: 80px; /* Aligns labels */

/* Responsive design */
@media (max-width: 600px) {
    .logo h1 {
        font-size: 48px;
    }

    .search-bar {
        padding: 10px 15px;
        font-size: 14px;
    }

    .buttons {
        flex-direction: column;
        width: 100%;
        max-width: 200px;
    }

    button {
        width: 100%;
    }

    .footer-links a {
        display: block;
        margin: 5px 0;
    }
}
