        .tab-container {
            margin-bottom: 20px;
        }
        .tab-buttons {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }
        .tab-button-group {
            display: flex;
            gap: 10px;
        }
        .tab-button {
            padding: 10px 25px;
            border: 1px solid #ddd;
            background: #fff;
            cursor: pointer;
            border-radius: 4px;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        .tab-button:hover {
            background: #f5f5f5;
        }
        .tab-button.active {
            background: #05710f;
            color: #fff;
            border-color: #05710f;
        }
        .tab-amap {
            padding: 10px 25px;
            border: 1px solid #ddd;
            background: #fff;
            cursor: pointer;
            border-radius: 4px;
            font-size: 16px;
            transition: all 0.3s ease;
            margin-left: auto;
            display: inline-block;
            text-align: center;
        }
        .tab-content {
            display: none;
        }
        .tab-content.active {
            display: block;
        }
        .form-group {
            margin-bottom: 15px;
        }
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-size: 14px;
            color: #333;
        }
        .form-group label span {
            color: red;
            margin-left: 3px;
        }
        .form-group input, 
        .form-group textarea {
            width: 100%;
            padding: 10px 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
            outline: none;
        }
        .form-group input:focus, 
        .form-group textarea:focus {
            border-color: #05710f;
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .submit-btn {
            width: 100%;
            padding: 12px;
            background: #05710f;
            color: #fff;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            cursor: pointer;
        }
        .submit-btn:hover {
            background: #045a0c;
        }
        .custom-alert {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }
        .alert-content {
            background: #fff;
            padding: 30px;
            border-radius: 8px;
            max-width: 400px;
            width: 90%;
            text-align: center;
        }
        .alert-message {
            margin-bottom: 20px;
            font-size: 16px;
            color: #333;
        }
        .alert-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        .alert-btn {
            padding: 8px 20px;
            border: none;
            border-radius: 4px;
            font-size: 14px;
            cursor: pointer;
        }
        .alert-btn.primary {
            background: #05710f;
            color: #fff;
        }
        .alert-btn.secondary {
            background: #ddd;
            color: #333;
        }