﻿
        .master {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 80vh; /* Makes sure the body takes the full viewport height */
            margin: 0; /* Removes default body margin */
        }
        /*Y95B724F53WAOSTG3Z74*/
        .mastercontainer {
            width: 100%;
            /*max-width: 800px;*/
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 0.3s ease-in-out;
            
        }

        .form-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            background-color: #347769;
            color: #fff;
        }
        .form-header h2 {
            margin: 0;
            font-size: 1.25em;
        }
        .form-header .close-btn {
            cursor: pointer;
            font-size: 1.2em;
        }
        .tabs {
            display: flex;
            background-color: #f9f9f9;
            border-bottom: 1px solid #ccc;
        }
        .tab {
            flex: 1;
            padding: 12px;
            cursor: pointer;
            text-align: center;
            transition: background-color 0.3s ease-in-out;
        }
        .tab.active, .tab:hover {
            /* background-color:#00E676;; */
            font-weight: bold;
        }
        .tab-content {
            padding: 20px;
            display: none;
        }
        .tab-content.active {
            display: block;
        }
        .category-form {
            display: flex;
            flex-direction: column;
        }
        .category-form label,
        .category-form input,
        .category-form button {
            margin: 10px 0;
        }
        .category-form input {
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 4px;
            width: 100%;
        }

           .myinput {

              
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 4px;
            width: 100%;

        
           }


        .category-form button {
            padding: 10px;
            background-color: #347769;
            color: #fff;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s ease-in-out;
        }
        .category-form button:hover {
            /* background-color:#00E676;; */
        }
        .category-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .category-list li {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid #ccc;
        }
        .category-list button {
            background-color: transparent;
            border: none;
            color: #347769;
            cursor: pointer;
            font-size: 1em;
            transition: color 0.3s ease-in-out;
        }
        .category-list button:hover {
            /* color: #3700b3; */
            /* color: #00E676; */
        }
        @media (max-width: 768px) {
            .form-header h2 {
                font-size: 1.2em;
            }
            .tab {
                padding: 10px;
            }
            .tab-content {
                padding: 15px;
            }
            .category-form input, .category-form button {
                padding: 8px;
            }
            .category-form button {
                font-size: 0.9em;
            }
        }
        @media (max-width: 480px) {
            .form-header h2 {
                font-size: 1em;
            }
            .tab {
                padding: 8px;
            }
            .tab-content {
                padding: 10px;
            }
            .category-form input, .category-form button {
                padding: 8px;
                font-size: 0.9em;
            }
            .category-list li {
                flex-direction: column;
                align-items: flex-start;
            }
            .category-list button {
                align-self: flex-end;
                margin-top: 5px;
            }
        }



        .avatar {

           width: 35px;
                    height: 35px;
                    border-radius: 50%;
                    vertical-align: middle;
                    margin-right: 8px;
        }



