/**
 * Created on Jan 18, 2024
 *
 * @category    Stylesheet
 * @package     Admin CRB
 * @author      Abdullah Sinani
 *
 */
/**
 * Cleaned and Optimized Stylesheet
 * Source: /charuty-manager/css/style.css
 */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Allura&family=Ballet:opsz@16..72&family=Kalam:wght@400;700&family=Luxurious+Script&display=swap');

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #f9f9f9;
  color: #333;
}

/* === Profile Layout === */
 */
.main-profile .profile-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.main-profile .profile-card .image {
    margin-bottom: 20px;
}

.main-profile .profile-card .data h2 {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
}

.main-profile .profile-card .data p {
    margin: 5px 0;
}

.main-profile .profile-card .row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.main-profile .profile-card .row .info {
    display: flex;
    align-items: center;
    margin: 10px;
}

.main-profile .profile-card .row .info i {
    margin-right: 8px;
    font-size: 20px;
}

.main-profile .profile-card .buttons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.main-profile .profile-card .buttons .btn {
    display: flex;
    align-items: center;
    margin: 0 10px;
    padding: 10px 20px;
    background-color: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.main-profile .profile-card .buttons .btn i {
    margin-right: 8px;
    font-size: 20px;
}


.main-page {
	width: 99%;
    padding: 10px 20px;
	border: 1px solid #c3c4c7;
	border-top: 0px;
	content: "";
	display: table;
	clear: both;
}

/* Ensure the form is centered and has some spacing */
.member-dashboard-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
}

/* Style for the form labels and inputs */
.member-dashboard-form .data {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.member-dashboard-form .data label {
    font-weight: bolder;
    margin-right: 10px;
    min-width: 250px; /* Adjust based on the length of the longest label */
    text-align: right;
    flex-shrink: 0;
}

.member-dashboard-form .data input,
.member-dashboard-form .data select,
.member-dashboard-form .data textarea {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
}

.member-dashboard-form .data input[type="file"] {
    padding: 3px;
}

.member-dashboard-form .data input[type="checkbox"] {
    width: auto;
    margin-top: 0;
}

/* Style for the buttons */
.member-dashboard-form .buttons {
    text-align: center;
  margin-top: 30px;
}

.member-dashboard-form .buttons button {
    padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  margin: 0 20px;
  padding: 8px 25px;
  border-radius: 5px;
  font-size: 18px;
  white-space: nowrap;
  background: linear-gradient(to left, #33ccff 0%, #1254e2 100%);
    cursor: pointer;
}

.member-dashboard-form .buttons button:hover {
    background-color: #45a049;
}





	    .progress-container {
	        width: 100%;
	        background-color: #f3f3f3;
	        border-radius: 5px;
	        margin-bottom: 20px;
	    }
	
	    .progress-bar {
	        height: 20px;
	        background-color: #4caf50;
	        border-radius: 5px;
	        transition: width 0.5s ease;
	    }
	
	    .progress-text {
	        padding: 5px;
	        text-align: center;
	        background-color: #fff;
	    }

		/* CSS for table styling */
		table.alb-block {
		    width: 100%;
		    border: 1px solid transparent;
		    border-collapse:  separate;
		}
		
		/* Style for odd rows */
		table.alb-block tbody tr:nth-child(odd) {
		    background-color: #f2f2f2; /* Change to desired color */
		}
		
		/* Style for even rows */
		table.alb-block tbody tr:nth-child(even) {
		    background-color: #ffffff; /* Change to desired color */
		}
		
		/* Style for even rows */
		table.alb-block tbody tr:last-child {
		    background-color: #e0e0e0; /* Change to desired color */
		}
		
		/* Optional: Hover effect */
		table.alb-block tbody tr:hover {
		    background-color: #e0e0e0; /* Change to desired hover color */
		}



#alb-members-css-form {
    max-width: 600px;
    margin: 20px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

#alb-members-css-form h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

#alb-members-css-form label {
	font-weight: 700;
	width: 220px !important;
    display: inline-block;
    margin-bottom: 10px;
}

#alb-members-css-form input[type="text"],
#alb-members-css-form input[type="email"],
#alb-members-css-form input[type="password"],
#alb-members-css-form input[type="number"],
#alb-members-css-form textarea {
    max-width: 80%;
    padding: 10px;
    margin-bottom: 15px;
    box-sizing: border-box;
}

#alb-members-css-form input[type="submit"] {
    background-color: #0073e6;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#alb-members-css-form input[type="submit"]:hover {
    background-color: #005bb5;
}

#del-members-css-form {
    max-width: 200px;
    float: left;
    margin: 20px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

/* style.css */
.alb-profile-container {
    max-width: 600px;
    margin: 20px auto;
}

.alb-profile-container h2 {
    color: #333;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
}

.alb-profile-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.alb-profile-table th,
.alb-profile-table td {
    padding: 10px;
    border: 1px solid #ddd;
}

.alb-profile-table th {
    background-color: #f2f2f2;
}

.alb-profile-table td {
    text-align: left;
}
/* Profile Card Styles */
.profile-card {
    max-width: 400px;
    margin: 20px auto;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 8px;
}

.profile-card h2 {
    color: #333;
    margin-bottom: 10px;
}

.profile-card table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

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

.profile-card th {
    background-color: #f5f5f5;
}



.year {
    margin: 20px;
    border: 1px solid #ccc;
    padding: 2px;
    width: 150px;
}

.year h4 {
    text-align: center;
}

.months {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.month {
    width: 100%;
    margin: 5px;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
}

.month.paid {
    background-color: #4caf50;
    color: white;
}

.month.unpaid {
    background-color: #f44336;
    color: white;
}


.calendar td {
    width: 25%;
    padding: 10px;
    text-align: center;
    border: 1px solid #ccc;
}


        
.calendar {
    width: 100% !important;
    border-collapse: collapse;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.calendar .year {
    border: 1px solid #ccc;
    padding: 20px;
    box-sizing: border-box;
}
.calendar .months {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}
.calendar .month {
    padding: 10px;
    text-align: center;
    border: 1px solid #ccc;
    box-sizing: border-box;
}
.calendar .paid {
    background-color: #c8e6c9;
}
.calendar .partially-paid {
    background-color: #ffeb3b;
}
.calendar .unpaid {
    background-color: #ffcccb;
}
.pagination {
    margin-top: 20px;
    text-align: center;
}
.pagination a,
.pagination span {
    margin: 0 5px;
    padding: 5px 10px;
    border: 1px solid #ccc;
    text-decoration: none;
}
.pagination .current {
    font-weight: bold;
    background-color: #0073aa;
    color: #fff;
}

.main-profile{
  width: 100%;
  height: 100vh;
  display: table-cell;
  align-items: center;
  justify-content: center;
  background-image: url(images/background.jpg);
  background-position: center;
  background-size: cover;
}
.profile-card{
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  width: 100%;
  border-radius: 25px;
  padding: 30px;
  border: 1px solid #ffffff40;
}
.profile-card .image{
  position: relative;
  height: 150px;
  width: 150px;
}
.profile-card .image .profile-pic{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}
.profile-card .data{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 15px;
}
.profile-card .data h2{
  font-size: 33px;
  font-weight: 600;
}
.profile-card .info h3{
  font-size: 22px;
  font-weight: 600;
}
.profile-card span{
  font-size: 18px;
}
.profile-card .row{
  display: flex;
  align-items: center;
  margin-top: 30px;
}
.profile-card .row .info{
  text-align: center;
  padding: 0 20px;
}
.profile-card .buttons{
  display: flex;
  align-items: center;
  margin-top: 30px;
}
.profile-card .buttons .btn{
  color: #fff;
  text-decoration: none;
  margin: 0 20px;
  padding: 8px 25px;
  border-radius: 25px;
  font-size: 18px;
  white-space: nowrap;
  background: linear-gradient(to left, #33ccff 0%, #1254e2 100%);
}
.profile-card .buttons .btn:hover{
  box-shadow: inset 0 5px 20px rgba(0,0,0,0.4);
}


.balance {font-family: 'Kalam', sans-serif;font-size:1.2em;font-style: oblique;letter-spacing: 1px;padding: 10px 5px; height:20px;padding:2px; word-break:normal; background-color: rgba(120, 120, 120, 0.01); white-space: nowrap;} 
.balance .figure { text-align: center; background-color: rgba(120, 120, 120, 0.02); }
.balance .title { text-align: right; background-color: rgba(0,  0,  0, 0.03); }

.aet_table th, .aet_table td {font-family: 'Kalam', sans-serif;font-size:1.2em;font-style: oblique;letter-spacing: 1px;padding: 10px 5px; height:20px;padding:2px; word-break:normal; background-color: rgba(120, 120, 120, 0.01); white-space: nowrap;} 
.aet_table td {font-size:1.1em; }
.aet_table th:nth-child(odd), .aet_table td:nth-child(odd) { background-color: rgba(120, 120, 120, 0.02); }
.aet_table th:nth-child(even), td:nth-child(even) {  background-color: rgba(0,  0,  0, 0.03); }
.aet_table th#id {width:33px !important;}
.alignright {text-align: right;}
.main {width: 100% !important;}
.printh2 {text-align: right;padding-right: 50px;}
.centeralign {text-align: center !important;}
.search-content {font-size:1.8em;}
.numbers {font-size: 1.6em; } 
.moneytotal {font-size:1.3em;padding-right:50px; text-align: right !important;}
       
[data-tab-info] {
    display: none;
}
  
.active[data-tab-info] {
    display: block;
}
.active[data-tab-value] {
  background: rgba(0,  0,  0, 0.29) !important;
}  
.tab-content {
    font-family: 'Kalam', sans-serif;
    font-size:14px;
}
  
.tabs {
    font-family: 'Kalam', sans-serif;
    font-size:1.6em;
    color: rgb(255, 255, 255);
    display: flex;
    margin: 0;
}
  
.tabs li {
    background: rgba(0, 0, 0, 0.65);
    padding: 10px;
    border: 1px solid rgb(255, 255, 255);
}
.tabs li a {color: #ffffff}    
.tabs li a:hover {color: #ffffff}
  
.tabs li:hover {
    background: rgba(0,  0,  0, 0.29);
    cursor: pointer;
    color: black;
}
  
.aet_form{margin-top: 20px; width: auto;}
.aet_form, .aet_form th, .aet_form td{border: 0px;padding: 6px 10px;font-size: 16px;}
.aet_form th{text-align: right; color: #3A87AD;}
div.error, div.updated {
    margin: 16px 0 15px;
    font-size: 13px;
    padding: 8px 12px;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
}
div.updated {
    color: #7AD03A;
    border-left: 4px solid #7AD03A;
    display : block !important;
}
div.error {
    border-left: 4px solid #DD3D36;
    color: #DD3D36;
}

.tab-menu select, .aet_form input, .aet_form select{height: auto; padding: 6px 6px; color: gray;}
.tab-menu select, .aet_form select{width: 150px; height: 40px;}
.tab-menu input, .aet_form input[type=submit] {
    background-color: #5BB75B !important;
    background-image: -moz-linear-gradient(center top , #62C462, #51A351);
    background-repeat: repeat-x;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    color: #FFFFFF !important;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    height: 40px;
}
.error{
    color: #DD3D36; 
}

.refresh {
width: auto;
position: relative;
background-color: #F88C00;
color: #FFF;
padding: 5px 12px;
font: 12px Tahoma;
display: inline-block;
line-height: 28px;
border: 0 none;
cursor: pointer;
text-decoration: none;
transition: all 0.3s ease-in-out;
border-radius: 2px;
 background-repeat: repeat-x;
 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
 color: #FFFFFF !important;
 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
 height: 40px;
 outline: none;
}
.refresh:hover {
  background-color: rgba(0, 0, 0, 0.55);
}



.aet_form textarea, .aet_form input[type="text"], .aet_form input[type="password"], .aet_form input[type="email"], .aet_form input[type="url"], 
.aet_form input[type="tel"], .aet_form input[type="number"], .aet_form input[type="date"], .aet_form input[type="file"], input[type="search"], 
.aet_form input[type="color"], .aet_form input[type="datetime"], .aet_form input[type="datetime-local"], .aet_form input[type="month"], 
.aet_form input[type="range"], .aet_form input[type="time"], .aet_form input[type="week"], .aet_form select {
  border-color: #F1F1F1;
  border-top-color: #DDD;
  border-left-color: #DDD;
  background-color: #F9F9F9;
  color: #515151;
  font: 12px Tahoma;
  padding: 8px;
  margin-bottom: 7px;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}
input, select {
  width: auto !important;
  height: auto;
  padding: 2px 6px;
  color: gray;
}
textarea, input {
  padding: 5px;
  outline: none;
}

.tab-links {
    display: inline-block;
    padding: 10px 20px;
    margin-right: 10px;
    background-color: #f2f2f2;
    color: #333;
    text-decoration: none;
    border: 1px solid #ccc;
    border-radius: 4px 4px 0 0;
}

.tab-links:hover {
    background-color: #e0e0e0;
}

.tab-links.active {
    background-color: #fff;
    border-bottom: 1px solid #fff;
    cursor: default;
}


/* Styles for the tab buttons */
.tabs {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}

.tabs button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
}

.tabs button:hover {
    background-color: #ddd;
}

.tabs button.active {
    background-color: #ccc;
}

/* Styles for the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}

/* Styles for form fields */
.form-field {
    margin-bottom: 10px;
}

.form-field label {
    width: 100px;
    display: block;
    font-weight: bold;
    float: left;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="password"],
.form-field textarea {
    width: 220px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-field input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

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