﻿.tool-card {
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .tool-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    }

.tool-card-content {
    flex-grow: 1;
}

.bg-color {
    background: #00665e !important;
}




body {
    font-family: Arial, Helvetica, sans-serif;
}

.navbar {
    overflow: hidden;
    background-color: white;
}

    .navbar a {
        float: left;
        font-size: 18px;
        color: black;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
    }

.dropdown {
    float: left;
    overflow: hidden;
}

    .dropdown .dropbtn {
        font-size: 18px;
        border: none;
        outline: none;
        color: black;
        padding: 14px 16px;
        background-color: inherit;
        font-family: inherit;
        margin: 0;
    }

    .navbar a:hover, .dropdown:hover .dropbtn {
        background-color: teal;
        color: white;
    }

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 250px;
    float: left;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

    .dropdown-content a {
        float: left;
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: left;
        width: 250px;
    }

        .dropdown-content a:hover {
            background-color: #a5a5f7;
        }

.dropdown:hover .dropdown-content {
    display: block;
}





/* Default bullet types */
.my-list {
    list-style-type: disc; /* Default filled circle */
    padding-left: 50px;
    margin-top: -10px
}

.another-list {
    list-style-type: circle; /* Hollow circle */
    padding-left: 50px;
    margin-top: -10px
}

/* Other common bullet types */
.square-list {
    list-style-type: square; /* Filled square */
}

/* Removing bullets entirely */
.no-bullets {
    list-style-type: none; /* Removes all bullet points */
    padding-left: 0; /* Optional: Adjust padding if needed */
}

/* Using custom images as bullets */
.image-bullets {
    list-style-image: url('path/to/your/bullet.png'); /* Replace with your image path */
}

/* Custom bullets with pseudo-elements for more control */
.custom-bullet-list {
    list-style-type: none; /* Remove default bullets */
    padding-left: 0;
}

    .custom-bullet-list li::before {
        content: "★ "; /* Custom character or emoji */
        color: blue; /* Color for the custom bullet */
        margin-right: 5px; /* Spacing between bullet and text */
    }
