.mtop0{margin-top: 0px;}
.mtop5{margin-top: 5px;}
.mtop10{margin-top: 10px;}
.mtop15{margin-top: 15px;}
.mtop20{margin-top: 20px;}
.mtop30{margin-top: 30px;}
.mtop40{margin-top: 40px;}
.mtop50{margin-top: 50px;}
.mtop60{margin-top: 60px;}
.mtop60{margin-top: 70px;}
.mtop60{margin-top: 80px;}
.mtop60{margin-top: 90px;}
.mtop100{margin-top: 100px;}

.mbot0{margin-bottom: 0px;}
.mbot5{margin-bottom: 5px;}
.mbot10{margin-bottom: 10px;}
.mbot20{margin-bottom: 20px;}
.mbot30{margin-bottom: 30px;}
.mbot40{margin-bottom: 40px;}
.mbot50{margin-bottom: 50px;}
.mbot60{margin-bottom: 60px;}
.mbot60{margin-bottom: 70px;}
.mbot60{margin-bottom: 80px;}
.mbot60{margin-bottom: 90px;}
.mbot100{margin-bottom: 100px;}

.pimg {
width:100%;
}

        .vendor-directory-container {
            max-width: 1200px;
            margin: 20px auto;
            padding: 20px;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        }

        .vendor-search-form {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 30px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .vendor-search-form label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #333;
        }

        .vendor-search-form select {
            width: 100%;
            max-width: 300px;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
            margin-right: 10px;
        }

        .vendor-search-form button {
            padding: 10px 20px;
            background: #222222;
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            cursor: pointer;
            margin-right: 10px;
        }

        .vendor-search-form button:hover {
            background: #444444;
        }

        .vendor-search-form .vendor-clear-btn {
            background: #6c757d;
        }

        .vendor-search-form .vendor-clear-btn:hover {
            background: #545b62;
        }

        .vendor-results-count {
            margin-bottom: 20px;
            color: #666;
            font-size: 14px;
        }

        .vendor-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 20px;
        }

        .vendor-card {
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .vendor-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        .vendor-business-name {
            font-size: 20px;
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 10px;
            border-bottom: 2px solid #007bff;
            padding-bottom: 8px;
        }

        .vendor-field {
            margin-bottom: 10px;
            line-height: 1.6;
        }

        .vendor-field-label {
            font-weight: 600;
            color: #555;
            display: inline-block;
            min-width: 120px;
        }

        .vendor-field-value {
            color: #333;
        }

        .vendor-field-value a {
            color: #007bff;
            text-decoration: none;
        }

        .vendor-field-value a:hover {
            text-decoration: underline;
        }

        .vendor-date-added {
            display: none;
        }

        .vendor-no-results {
            text-align: center;
            padding: 40px;
            color: #666;
            font-size: 18px;
        }

        @media (max-width: 768px) {
            .vendor-grid {
                grid-template-columns: 1fr;
            }
            
            .vendor-search-form select,
            .vendor-search-form button {
                width: 100%;
                max-width: none;
                margin-bottom: 10px;
            }
        }