body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    height: 100vh;
    background-color: #f4f4f9;
}

.sidebar {
    width: 250px;
    background-color: #2c2c54;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #2c2c54;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border-top: 1px solid #444;
}

.sidebar-header h2 {
    margin: 0;
    font-size: 20px;
    color: #fff;
}

.sidebar-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #2c2c54; /* Same background as header */
    color: white;
    font-size: 16px; /* Slightly smaller font size */
    border-top: 1px solid #444; /* Adds a top border for separation */
}

.menu {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.menu li {
    margin-bottom: 15px;
}

.menu a {
    text-decoration: none;
    color: white;
    font-size: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-links a {
    text-decoration: none;
    color: #aaa;
    font-size: 16px;
}

.main-content {
    flex: 1;
    padding: 20px;
    background-color: #fff;
}

.main-content h2 {
    margin: 0 0 20px;
    font-size: 24px;
}


button {
				background-color: #3498db;
				color: #fff;
				border: none;
				padding: 10px;
				font-size: 14px;
				border-radius: 5px;
				cursor: pointer;
			}

button:hover {
				background-color: #2980b9;
			}

.create-company-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 20px;
}

.create-company-btn:hover {
    background-color: #0056b3;
}

.companies-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.companies-table th, .companies-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

.companies-table th {
    background-color: #f4f4f9;
    font-weight: bold;
}

.companies-table td a {
    color: #007bff;
    text-decoration: none;
}

.companies-table td a:hover {
    text-decoration: underline;
}

.project-count {
    display: inline-block;
    background-color: #007bff;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    margin-right: 5px;
}

.flag {
    width: 20px;
    height: 15px;
}

.trial {
    background-color: #ff4081;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
}

.edit-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.edit-btn:hover {
    background-color: #0056b3;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.page-btn {
    background-color: #f4f4f9;
    border: 1px solid #ddd;
    padding: 5px 10px;
    cursor: pointer;
}

.page-btn.active {
    background-color: #007bff;
    color: white;
    border: none;
}

.page-btn:hover {
    background-color: #0056b3;
    color: white;
}

.subscription-box {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px;
    background-color: #f9f9f9;
  }
  
  .icons {
    display: flex;
    gap: 5px; /* Space between icons */
  }
  
  .icon img {
    width: 24px;
    height: 24px;
    opacity: 0.5; /* Greyed-out effect */
  }
  
  .trial-badge {
    margin-left: 10px;
    padding: 5px 10px;
    background-color: #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
  }
  .sidebar .logo1 img {
    width: 150px;
    height: 43px;
    margin-right: 50px;
    }
    .sidebar .logo1 img {
        width: 150px;
        height: 43px;
         margin-right: 50px;
     }

    /*signup styles*/
     .left-section {
        flex: 1;
        padding: 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background-color: #fff;
    }

    .right-section {
        flex: 1;
        background-color: #1a1a4b;
    }

    .logo {
        margin-bottom: 20px;
    }

    h1 {
        font-size: 24px;
        margin-bottom: 20px;
        color: #333;
    }

    form {
        display: flex;
        flex-direction: column;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        display: block;
        margin-bottom: 5px;
        font-size: 14px;
        color: #333;
    }

    .form-group input,
    .form-group select {
        width: 100%;
        padding: 10px;
        font-size: 14px;
        border: 1px solid #ddd;
        border-radius: 5px;
        box-sizing: border-box;
    }

    .form-group input[type="checkbox"] {
        width: auto;
        margin-right: 10px;
    }

    .form-group .password-container {
        position: relative;
    }

    .form-group .password-container input {
        padding-right: 40px;
    }

    .form-group .toggle-password {
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translateY(-50%);
        cursor: pointer;
        font-size: 14px;
        color: #333;
    }

    .form-group .helper-text {
        font-size: 12px;
        color: #666;
        margin-top: 5px;
    }

    .form-group .helper-text.valid {
        color: green;
    }

    .form-group .helper-text.invalid {
        color: red;
    }

    .form-group a {
        color: #3498db;
        text-decoration: none;
    }

    .form-group a:hover {
        text-decoration: underline;
    }

    .signup-submit-button {
		width: 100%;
    }


    .terms {
        font-size: 12px;
        color: #333;
    }

    .terms a {
        color: #3498db;
        text-decoration: none;
    }

    .terms a:hover {
        text-decoration: underline;
    }

    /* Login-form-styles */  
    .login-left-section {
        width: 50%;
        padding: 40px;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .login-left-section .logo {
        text-align: center;
        margin-bottom: 40px;
    }

    .login-left-section .logo img {
        width: 150px;
    }

    .login-left-section h1 {
        font-size: 24px;
        margin-bottom: 10px;
        text-align: center;
    }

    .login-left-section p {
        font-size: 14px;
        color: #666;
        text-align: center;
        margin-bottom: 30px;
    }

    .login-form-group {
        margin-bottom: 20px;
    }

    .login-form-group label {
        display: block;
        font-size: 14px;
        margin-bottom: 5px;
    }

    .login-form-group input {
        width: 100%;
        padding: 10px;
        font-size: 14px;
        border: 1px solid #ddd;
        border-radius: 5px;
        background-color: #fff8dc; /* Light yellow background */
    }

    .login-form-actions {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
    }

    .login-form-actions a {
        font-size: 14px;
        color: #3498db;
        text-decoration: none;
    }

    .login-form-actions a:hover {
        text-decoration: underline;
    }

    .login-form-actions input[type="checkbox"] {
        margin-right: 5px;
    }

    .login-button {
        width: 100%;
        background-color: #3498db;
        color: #fff;
        border: none;
        padding: 10px;
        font-size: 14px;
        border-radius: 5px;
        cursor: pointer;
    }

    .login-button:hover {
        background-color: #2980b9;
    }

    .create-account {
        text-align: center;
        margin-top: 20px;
    }

    .create-account a {
        font-size: 14px;
        color: #3498db;
        text-decoration: none;
    }

    .create-account a:hover {
        text-decoration: underline;
    }

    /* Right Section */
    .login-right-section {
        width: 50%;
        background-color: #2c2c54;
    }
    .loginlogo img {
        width: 150px;
        height: 43px;
        margin-right: 50px;
    }