@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500&display=swap');
* {
    margin: 0;
    padding: 0;
    font-family: 'tamoha';
}
.main{
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(images/back.jpg);
  background-position: center;
  background-size: cover;
}
.profile-card{
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 400px;
  width: 100%;
  border-radius: 25px;
  padding: 30px;
  border: 1px solid #ffffff40;
  box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}
.image{
  position: relative;
  height: 150px;
  width: 150px;
}
.image .profile-pic{
  margin-left:155px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}
.image .profile-pic1{
  margin-left:155px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}
.image .profile-pic2{
  margin-left:155px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}
.data{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 15px;
}
.data h2{
  font-size: 33px;
  font-weight: 600;
}
span{
  font-size: 18px;
}
.row{
	margin-left:65px;
  display: flex;
  align-items: center;
  margin-top: 30px;
}
.row .info{
  text-align: center;
  padding: 0 20px;
}
.buttons{
  display: flex;
  align-items: center;
  margin-top: 30px;
}
.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%, #ff99cc 100%);
}
.buttons .btn:hover{
  box-shadow: inset 0 5px 20px rgba(0,0,0,0.4);
}
body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.profile-container {
    width: 100%;
    max-width: 400px;
}

.profile-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.profile-header {
    text-align: center;
    padding: 30px 20px 20px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    position: relative;
}

.avatar {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    border-radius: 50%;
    border: 4px solid white;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.online-status {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 15px;
    height: 15px;
    background-color: #4CAF50;
    border: 2px solid white;
    border-radius: 50%;
}

.name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
}

.status {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.3);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 8px;
}

.role {
    font-size: 16px;
    opacity: 0.9;
}

.profile-tabs {
	margin-top:20px;
    display: flex;
    border-bottom: 1px solid #e9ecef;
}

.tab-button {
	height:55px;
    color: #fff;
  text-decoration: none;
  margin-top:35px;
  padding: 8px 25px;
  border-radius: 25px;
  font-size: 18px;
  white-space: nowrap;
  background: linear-gradient(to left, #166fe5 0%, #166fe5 100%);
}

.tab-button.active {
    color: #4100b3;
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #4facfe;
}

.tab-button:hover:not(.active) {
    background-color: #e9ecef;
}

.tab-content {
    padding: 20px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

h3 {
    margin-bottom: 15px;
    color: #343a40;
    font-weight: 600;
}

.info-item, .contact-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f1f1f1;
}

.label {
    font-weight: 500;
    color: #6c757d;
}

.value {
    color: #343a40;
    text-align: right;
}

.donate-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}

.donate-option {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.donate-option:hover {
    border-color: #4facfe;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.donate-icon {
    font-size: 24px;
    margin-right: 15px;
}

.donate-title {
    font-weight: 500;
    margin-bottom: 5px;
    color: #343a40;
}

.donate-details {
    font-size: 14px;
    color: #6c757d;
}

p {
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 15px;
}
.buttons .btn1{
  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%, #ff99cc 100%);
}
.buttons .btn	:hover{
  box-shadow: inset 0 5px 20px rgba(0,0,0,0.4);
}
.buttons .btn2{
  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%, #ff99cc 100%);
}
.buttons .btn2:hover{
  box-shadow: inset 0 5px 20px rgba(0,0,0,0.4);
}
/* THÊM CSS CHO NÚT FACEBOOK */
.social-button {
    margin-top: 15px;
}

.facebook-btn {
	margin:20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #1877f2;
    color: white;
    text-decoration: none;
    padding: 20px 30px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.facebook-btn i {
    margin-right: 8px;
    font-size: 16px;
}

.facebook-btn:hover {
    background-color: #166fe5;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(24, 119, 242, 0.4);
}

.facebook-btn:active {
    transform: translateY(0);
}