﻿/*body {
    transform: scale(1);
    transform-origin: top left;
}*/

/* main-menu-style.css */
.btn-custom {
    display: block;
    text-align: center;
    padding: 20px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

    .btn-custom:hover {
        background-color: #2980b9;
    }

.btn-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.btn-text {
    display: block;
    font-size: 16px;
}

/* Custom style to remove hyperlink styling */
.card-link-no-style {
    text-decoration: none; /* Remove underline */
    color: inherit; /* Inherit text color */
}

