/* css/styles.css */

/* General Styles */
body {
    font-family: 'Roboto Condensed', sans-serif;
    background-color: #f4f4f4;
	font-weight: 100;
    margin: 0;
    padding: 0;
}

header {
    background-color: #2e3b4e;
    padding: 20px 0;
    text-align: center;
    position: relative;
}





/* Modern 2024ish Form Styles */
body {
    font-family: 'Roboto Condensed', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

header, footer {
    background-color: #2e3b4e; /* Dark blue */
    color: white;
    text-align: center;
    padding: 3px;
    position: relative;
}
footer a {

    text-decoration: none;
    color: white;
}
footer a:hover {

    text-decoration: underline;
    color: white;
}


form {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 5px;
    width: 90%;
	max-width: 400px;
    margin: 10px auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Subtle shadow for a modern look */
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease; /* Smooth hover effect */
}

@media (max-width: 600px) {
    form {
        width: 90%; /* Set to 90% for smaller screens */
    }
}
form:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); /* Enhance shadow on hover */
}

h2 {
    color: #2e3b4e; /* Dark blue */
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

label {
    font-size: 14px;
    color: #333333;
    font-weight: 600;
}

input[type="text"], input[type="email"], input[type="password"], input[type="url"]  {
    width: 100%;
    padding: 12px;
    margin: 10px 0 20px;
    border-radius: 6px;
    border: 1px solid #d0d0d0;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus {
    border-color: #61807A; /* Modern grey-blue focus color */
    outline: none;
}

input[type="submit"] {
    background-color: #61807A; /* Modern grey-blue */
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    cursor: pointer;
    border-radius: 5px;
    border: none;
    width: 100%;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #c1de56; /* Modern yellow hover */
}

.language-selector {
    margin-top: 0px;
    font-size: 20px;
    color: white;
}

/* Bottom margin to avoid touching the footer */
form {
    margin-bottom: 10px;
}

footer {
    background-color: #2e3b4e; /* Dark blue */
    color: white;
    padding: 10px;
    text-align: center;
    position: relative;
    width: 100%;
    bottom: 0;
}
/* Header Container with Logo, Nav Menu, and Language Selector in the Same Line */
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Space between elements */
    padding: 2px;
    background-color: transparent; /* Dark blue background */
}

.logo img {
    height: 50px; /* Adjust the logo size as needed */
}

.nav-menu {
    display: flex;
    flex-grow: 1; /* Makes sure the nav stretches as needed */
    justify-content: flex-start; /* Align nav links to the left */
}

.nav-links {
    display: flex;
    gap: 0px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 1px;
    font-weight: 600;
    text-transform: initial;
    transition: background-color 0.3s;
}

.nav-links a:hover {
    background-color: #61807A; /* Hover color */
    border-radius: 5px;
}

/* Language Selector aligned to the right */
.language-selector {
    color: white;
    font-size: 20px;
}

.language-selector a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    margin-left: 10px;
}

.language-selector a:hover {
    text-decoration: underline;
}

/* Responsive: Hide the nav links by default on small screens */
.icon {
    display: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* Hide the nav menu on small screens */
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    .nav-links.responsive {
        display: flex; /* Show the nav menu when responsive class is added */
    }

    .icon {
        display: block; /* Show the hamburger icon on small screens */
    }

    .header-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .language-selector {
        margin-top: 10px;
    }
}
/* Message container */
.success-message, .error-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    z-index: 1000;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    position: relative; /* Important to ensure the close button stays within this box */
}

/* Success and error styles remain the same */
.success-message {
    background-color: #d4edda;
    border: 2px solid #c3e6cb;
    color: #155724;
}

.error-message {
    background-color: #f8d7da;
    border: 2px solid #f5c6cb;
    color: #721c24;
}

/* Close button styling */
.close-btn {
    position: absolute;
    top: 10px;
    left: 15px; /* Ensure it stays in the upper left corner */
    background: transparent;
    border: none;
    font-size: 20px;
    color: #000;
    cursor: pointer;
}

.close-btn:hover {
    color: #ff0000; /* Optional: red hover effect for visibility */
}
/* Centered message below the form */
.centered-message {
    text-align: center;
    margin-top: 20px;
}

.centered-message a {
    color: #61807A; /* Link color */
    text-decoration: none;
    font-weight: bold;
}

.centered-message a:hover {
    text-decoration: underline;
}

/* Popup is hidden by default */
.popup {
    display: none; /* Ensure the popup is hidden initially */
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.popup-content {
    background-color: white;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 40%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: black;
}
body {
    font-family: 'Roboto Condensed', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

header h1 {
    margin: 0; /* Remove any default margin */
    padding: 10px 0; /* Set a small padding for spacing */
    font-size: 24px; /* Adjust font size if needed */
    text-align: center;
}

.client-table {
    width: 95%;
    margin: 20px auto;
    border-collapse: collapse;
}

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

.client-table th {
    background-color: #2e3b4e;
    color: white;
    font-weight: bold;
}

.client-table td {
    background-color: #ffffff;
}
.client-table th a {
  color: white;          /* Set the text color to white */
  text-decoration: none; /* Remove the underline */
}

.client-table th a:hover {
  text-decoration: underline; /* Optionally, underline on hover */
}

button.add-client-btn {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #61807A;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button.add-client-btn:hover {
    background-color: #c1de56;
}

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

button.edit-btn:hover {
    background-color: #61807A;
}

/* Popup styling */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Ensure popup covers the entire screen */
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000; /* Make sure it's on top of other content */
    overflow-y: auto; /* Ensure the whole popup is scrollable */
}

/* Popup content */
.popup-content {
    background-color: white;
    margin: 50px auto; /* Centers the popup */
    padding: 20px;
    width: 40%; /* Set the width to ensure it's not too wide */
    max-height: 90%; /* Ensure content stays within 90% of screen height */
    overflow-y: auto; /* Make sure the content inside the popup is scrollable */
    border: 1px solid #888;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.popup-content h2 {
    color: #2e3b4e;
}

.popup-content label {
    font-weight: bold;
    margin-top: 10px;
}

.popup-content input, .popup-content textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.popup-content input[type="submit"] {
    background-color: #61807A;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 10px;
}

.popup-content input[type="submit"]:hover {
    background-color: #c1de56;
}

/* Close button */
.popup .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    margin-top: -10px;
}

.popup .close:hover {
    color: black;
}
body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
	font-weight: 100;
    text-align: center;
}

h1 {
    color: #2e3b4e;
    margin-top: 20px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); /* Responsive grid */
    gap: 20px;
    padding: 20px;
    max-width: 1000px;
    margin: 40px auto;
}

.dashboard-btn {
    background-color: #2e3b4e;
    color: white;
    border-radius: 10px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s, background-color 0.3s;
    text-align: center; /* Ensure text is centered */
}

.dashboard-btn i {
    font-size: 32px;
    margin-bottom: 10px;
}

.dashboard-btn span {
    font-size: 16px;
    text-transform: capitalize; /* Only capitalize the first letter */
}

.dashboard-btn:hover {
    background-color: #61807A;
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); /* Adjust for smaller screens */
    }

    .dashboard-btn {
        padding: 20px;
    }

    .dashboard-btn i {
        font-size: 28px;
    }

    .dashboard-btn span {
        font-size: 14px;
    }
}
/* Delete button */
.delete-btn {
    background-color: #e74c3c;
    color: white;
    padding: 10px 20px;
    border: none;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
}

.delete-btn:hover {
    background-color: #c0392b;
}

/* Popup styling */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.popup-content {
    background-color: white;
    margin: 3% auto;
    padding: 20px;
    width: 40%;
    text-align: center;
    border-radius: 10px;
}
@media (max-width: 768px) {
	.popup-content {
    
    width: 70%;
   
}
}
.popup-content h2 {
    margin-bottom: 20px;
}

.confirm-btn {
    background-color: #e74c3c;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.cancel-btn {
    background-color: #95a5a6;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.confirm-btn:hover, .cancel-btn:hover {
    opacity: 0.9;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    cursor: pointer;
}
/* Container for Client Data */
.client-data-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
}

/* Client Data Grid */
.client-data {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px 20px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.client-data-label {
    font-weight: bold;
    color: #333;
}

.client-data-value {
    color: #555;
}

/* Responsive Text Adjustments */
@media (max-width: 768px) {
    .client-data {
        grid-template-columns: 1fr;
    }

    .client-data-label, .client-data-value {
        padding: 10px 0;
    }
}

@media (min-width: 769px) {
    .client-data {
        grid-template-columns: repeat(2, 1fr);
    }
}


.record-entry {
    background-color: #f9f9f9;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
    position: relative;
}

.record-entry p {
    margin: 5px 0;
}

.delete-button {
    color: #e74c3c;
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 20px;
}

.delete-button:hover {
    color: #c0392b;
}
/* Client Data */
.client-data {
    width: 100%;
    margin-bottom: 20px;
    border-collapse: collapse;
    font-size: 16px;
}

.client-data td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

/* Record Entries */
.record-entry {
    background-color: #f5f5f5;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    position: relative;
}

.record-entry:hover {
    transform: translateY(-2px);
}

.delete-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.delete-button i {
    color: white;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
}
/* Container for Client Data */
.client-data-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
}

/* Compact Client Data Grid */
.client-data-grid.compact {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.client-data-grid.compact > * {
  padding: 10px;
  border: 1px inset  #ccc; /* 1px border for the line */
  box-sizing: border-box; /* Ensure padding and border are included in element width/height */
border-bottom: 2px inset #ccc; /* Optional: Apply the border only between elements, not the last */
}

.client-data-grid.compact > *:not(:last-child) {
  border-bottom: 2px inset #ccc; /* Optional: Apply the border only between elements, not the last */
}

/* Grid Labels and Values */
.grid-item-label {
    font-weight: bold;
    color: #333;
}

.grid-item-value {
    color: #555;
	text-align: left;
}

/* Adjust layout for small screens */
@media (max-width: 768px) {
    .client-data-grid.compact {
        grid-template-columns: 1fr;
    }
}
/* new header */
/* Header Styling */
header {
    background: linear-gradient(90deg, #3498db, #c1de99); /* Gradient effect */
    padding: 0px 2px;
    
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Shadow for 3D effect */
    color: white;
    position: relative;
    z-index: 1000;
}

/* Logo Styling */
header .logo img {
    height: 40px;
    vertical-align: middle;
}

/* Nav Menu Styling */
.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu .nav-links a {
    color: white;
    font-weight: bold;
    text-decoration: none;
    margin: 0 10px;
    padding: 2px;
    transition: background 0.3s ease, border-radius 0.3s ease;
}

.nav-menu .nav-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}


/* Language Selector */
.language-selector {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.language-selector a {
    color: white;
    font-size: 14px;
    margin: 0 10px;
    text-decoration: none;
    padding: 5px;
    border-radius: 5px;
}

.language-selector a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Mobile Menu */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-menu .nav-links a {
        margin: 0px 0;
		padding: 0px;
    }

    .language-selector {
        margin-top: 10px;
    }
}

.nav-links a {
    position: relative;
    text-decoration: none;
    color: #000;
    padding: 0 15px; /* Add spacing around links */
    display: inline-block;
}
.nav-links a::after {
    content: ""; /* Empty content for the line */
    display: inline-block;
    position: absolute;
    right: -8px; /* Adjust spacing */
    top: 50%;
    transform: translateY(-50%);
    height: 100%; /* Adjust height of the line */
    border-right: 2px dotted #fff; /* Dotted vertical line */
}

.nav-links a:last-child::after {
    display: none; /* Remove the line after the last menu item */
}


/* Hamburger Menu Icon */
.icon {
    display: none;
}

@media (max-width: 768px) {
    .icon {
        display: block;
        font-size: 30px;
        cursor: pointer;
        color: white;
    }
}
.add-record-btn {
    background-color: #61807A; /* Stylish green */
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px; /* Spacing between icon and text */
}

.add-record-btn:hover {
    background-color: #c1de56; /* Lime green hover */
}
.record-table {
    width: 100%;
    border-spacing: 15px;
}
.record-table th {
   
    color: #111;
    font-weight: thin;
	font-size: 14px;
}
.record-date {
    text-align: center;
    vertical-align: top;
    width: 80px;
}

.date-circle {
    background-color: #D0E6EB; /* Light grey-blue */
    border-radius: 50%;
    padding: 10px;
    display: inline-block;
    width: 50px;
    height: 50px;
    font-size: 14px;
    font-weight: 700;
    color: #333;
    line-height: 50px;
    text-align: center;
}

.record-text {
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
	border: 10px solid #ddd; /* Thin line for the border */
}
/*new record table*/

.record-table {
    width: 100%;
    border-spacing: 15px;
}

.record-table th {
    color: #111;
    font-weight: thin;
    font-size: 14px;
}

.record-date {
    position: relative; /* Needed for the pseudo-element positioning */
    text-align: center;
    vertical-align: top;
    width: 80px;
}

.date-circle {
    background-color: #D0E6EB; /* Light grey-blue */
    border-radius: 50%;
    padding: 10px;
    display: inline-block;
    width: 50px;
    height: 50px;
    font-size: 14px;
    font-weight: 700;
    color: #333;
    line-height: 50px; /* Vertically center the text */
    text-align: center;
    position: relative;
}

.record-date::after {
    content: '';
    position: absolute;
    top: 40px; /* Aligns the line to the middle of the circle */
    left: 85%; /* Positions the line to the right of the circle */
    width: calc(100% + 15px); /* Extends the line from the circle to the record text */
    height: 2px; /* Thickness of the line */
    background-color: #ccc; /* Line color */
    transform: translateY(-50%); /* Center the line vertically relative to the circle */

}

.record-text {
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    border: 1px solid #ddd; /* Thin line for the border */
    position: relative;
    margin-left: 15px; /* Adds spacing between the columns */
} 
/* Media query for small devices */
@media (max-width: 600px) {
    .record-table {
        display: block; /* Change table to block for stacking */
        border-spacing: 0; /* Remove spacing */
    }
    
    .record-table tr {
        display: block; /* Make each row a block */
        margin-bottom: 15px;
    }
    
    .record-date, .record-text, .edit-btn, .delete-btn {
        width: 100%; /* Full width for all elements */
        text-align: left;
    }

    .record-date::after {
        display: none; /* Hide the line between columns on small screens */
    }

    .record-date {
        text-align: center;
        margin-bottom: 10px;
    }
    
    .record-text {
        margin-left: 0; /* Remove margin on small screens */
        padding: 10px;
    }
	form {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    width: 80%;
    margin: 10px auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Subtle shadow for a modern look */
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease; /* Smooth hover effect */
}
}

/* Modern form styles */
.modern-form {
    background: #f7f7f7;
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

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

.radio-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
	 justify-content: center; /* Center the radio options horizontally */
    align-items: center; /* Center the radio options vertically */
}

.radio-group label {
    font-size: 12px;
    cursor: pointer;
}

input[type="radio"] {
    margin-right: 5px;
	align-self: center
}

input[type="file"] {
    margin-top: 8px;
}

.captcha-input {
    margin-top: 2px;
    font-size: 16px;
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.save-btn {
    background-color: #61807A; /* Stylish green */
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.save-btn:hover {
    background-color: #c1de56; /* Lime green on hover */
}

.pro-only {
    font-size: 12px;
    color: #888;
    font-style: italic;
}

.form-title {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}
.subscription-options {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    margin-top: 30px;
}

.subscription-box {
    width: 220px;
    padding: 20px;
    border: 2px solid #ccc;
    border-radius: 10px;
    text-align: center;
    background-color: #f9f9f9;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transform: scale(1);
    margin: 10px; /* Add margin for spacing when stacked */
}


.subscription-box i {
    font-size: 50px;
    margin-bottom: 10px;
}

.subscription-box h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.subscription-box p {
    margin-bottom: 10px;
    font-size: 16px;
}


.subscription-box:hover {
    transform: scale(1.05);  /* Slightly enlarge on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);  /* Deepen shadow on hover */
    border-color: #61807A;  /* Add a more vibrant border color on hover */
}

.subscription-box.selected {
    background-color: #c1de56;
    border-color: #61807A;
}

.current-plan {
    font-size: 16px;
    color: green;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .subscription-box {
        width: 200px;
    }
}

@media (max-width: 992px) {
    .subscription-box {
        width: 180px;
    }
}

@media (max-width: 768px) {
    .subscription-box {
        width: 45%; /* Adjust to fit two boxes in one row on tablets */
    }
}

@media (max-width: 576px) {
    .subscription-box {
        width: 70%; /* Full width on small screens */
    }
}
.contact-form {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form label {
    font-size: 16px;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.contact-form textarea {
    height: 120px;
    resize: none;
}

.contact-form input[type="submit"] {
    background-color: #61807A; /* Button color matching the site's theme */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form input[type="submit"]:hover {
    background-color: #c1de56; /* Lighter green on hover */
}

.success-message {
    color: green;
    font-weight: bold;
    margin-top: 20px;
}

.error-message {
    color: red;
    font-weight: bold;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-form {
        padding: 15px;
    }

    .contact-form label {
        font-size: 14px;
    }

    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form textarea {
        font-size: 13px;
    }

    .contact-form input[type="submit"] {
        padding: 8px 15px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .contact-form {
        padding: 10px;
		width: 80%;
    }

    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form textarea {
        font-size: 12px;
    }

    .contact-form input[type="submit"] {
        padding: 20px 32px;
        font-size: 13px;
    }
}
.main-text {
    margin: 0 auto;
    max-width: 700px;
    padding: 20px;
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .main-text {
        width: 80%;
        font-size: 14px;
    }
}

.cookie-popup {
    position: fixed;
	color: #000;
    bottom: 10px;
    left: 10px;
    background-color: #f5f5f550;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    display: none; /* Hidden by default */
    font-size: 14px;
	
}

.cookie-popup p {
    margin-bottom: 10px;
}

.cookie-popup button {
    background-color: #61807A; /* Button color matching the site's theme */
    color: white;
    border: none;
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-right: 5px;
}

.cookie-popup button:hover {
    background-color: #c1de56; /* Lighter green on hover */
}
.connections-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

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

.connections-table th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.connections-table ul {
    list-style-type: none;
    padding: 0;
}

.connections-table ul li {
    margin-bottom: 10px;
}

.connections-table a {
    text-decoration: none;
    color: #2b7cff;
}

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

.delete-btn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    color: red;
    font-size: 18px;
    margin-left: 10px;
}

.add-more-btn {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.add-more-btn:hover {
    background-color: #45a049;
}


.popup-content {
    display: flex;
    flex-direction: column;
}

.popup-content h3 {
    margin-bottom: 20px;
}

.popup-content label {
    margin-top: 10px;
}

.popup-content select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
}

.popup-content input[type="submit"] {
    
    color: white;
    padding: 10px 20px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
	width: 60%;
}

.popup-content input[type="submit"]:hover {
    background-color: #45a049;
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
    font-size: 20px;
    color: #888;
}
/* Container for the project data */
.project-data-container {
    margin: 20px 0;
    padding: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Project Information Header */
.project-data-container h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

/* Table for displaying project details */
.details-table {
    width: 100%;
    border-collapse: collapse;
}

/* Styling for the table rows */
.details-table th,
.details-table td {
    padding: 12px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid #e0e0e0;
}

/* Styling for the table headers */
.details-table th {
    width: 30%;
    font-weight: bold;
    color: #444;
}

/* Styling for the table values */
.details-table td {
    width: 70%;
    color: #666;
}

/* Two-column table structure */
.two-column-table th {
    text-align: left;
}

/* Styling for links (if any) in the table */
.details-table a {
    color: #61807A;
    text-decoration: none;
    font-weight: 600;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .details-table th, .details-table td {
        display: block;
        width: 100%;
    }

    .details-table th {
        text-align: left;
    }
}
.table-container {
    overflow-x: auto; /* Enables horizontal scrolling */
    -webkit-overflow-scrolling: touch; /* Improves scrolling on iOS devices */
}

.client-table {
    width: 100%; /* Ensures the table takes full width */
    border-collapse: collapse; /* Optional: Ensures clean borders */
}

.client-table th, .client-table td {
    padding: 10px;
    text-align: left;
}



@media screen and (max-width: 768px) {
    .client-table {
        font-size: 12px; /* Adjust font size for mobile screens */
    }
}

button[disabled] {
    background-color: #d3d3d3; /* A light grey color to indicate disabled */
    cursor: not-allowed;
    pointer-events: none;
}

/* Tooltip for Disabled Button */
button[disabled]:hover:after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 120%; /* Adjust to position above the button */
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 5px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
}

button[disabled]:hover:after {
    visibility: visible;
    opacity: 1;
}
/* Center reCAPTCHA widget if needed */
.g-recaptcha {
    margin: 10px 0;
}
.progress-bar {
    width: 100%;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-bar .progress {
    height: 20px;
    background-color: #4caf50;
    border-radius: 10px;
    transition: width 0.3s ease;
}



/* Tooltip container */
.tooltip-container {
    position: relative;
    display: inline-block;
}

/* Basic button style */
.add-client-btn {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

/* Disabled button styling */
.add-client-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    position: relative;
}

/* Tooltip Styling */
.tooltip-text {
    visibility: hidden; /* Hidden by default */
    width: 200px; /* Set the width of the tooltip */
    background-color: rgba(0, 0, 0, 0.7); /* Dark background */
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 8px;
    font-size: 14px;
    position: absolute;
    bottom: 125%; /* Position above the button */
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 100;
}

/* Tooltip visibility when the button is disabled and hovered */
.tooltip-container:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}