
/* 
    Created on : Dec 1, 2024, 7:02:34 PM
    Author     : Tchokote Herve
*/
.text-color {
    color:#00C4CC !important;
}
.text-color:hover {
    color: #009FA5 !important;
}

.active {
    background: #00C4CC !important;
}
.active:hover {
    background: #009FA5 !important;
}

.profile-badge {
    margin: auto;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

.profile-cover {
    height: 100px;
    background: #00C4CC;
    position: relative;
}

.profile-picture-container {
    position: absolute;
    bottom: -40px;
    left: 20px;
    width: 100px;
    height: 100px;
}

.profile-picture {
    width: 100%;
    height: 100%;
    border-radius: 5%;
    object-fit: cover;
    border: 3px solid white;
}

.upload-icon {
    position: absolute;
    bottom: 0;
    right: 10px;
    background-color: white;
    padding: 2px;
    border: 1px solid #ddd;
    cursor: pointer;
}

.username-and-actions {
    position: absolute;
    bottom: -30px;
    left: 130px;
}

.username-and-actions h5 {
    margin: 0;
    font-weight: bold;
    color:#fff;
}

.edit-profile-btn {
    margin-top: 5px;
    padding: 3px 10px;
    font-size: 12px;
}

.profile-details {
    padding: 60px 20px 20px 20px;
    text-align: left;
    background: #FFFFFF;
}

/* CSS for margin spacing in 5px increments */
.space5 {
  margin-top: 5px;
  margin-bottom: 5px;
}

.space10 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.space15 {
  margin-top: 15px;
  margin-bottom: 15px;
}

.space20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

/* Continue until 100px */
.space25 {
  margin-top: 25px;
  margin-bottom: 25px;
}

.space30 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.space35 {
  margin-top: 35px;
  margin-bottom: 35px;
}

/* Add more as needed up to */
.space100 {
  margin-top: 100px;
  margin-bottom: 100px;
}

/* Default logo size */
.logo {
    width: 168px;
    transition: width 0.3s ease; /* Smooth resizing */
}

/* Resize logo for smaller screens */
@media (max-width: 768px) {
    .logo {
        width: 120px; /* Adjust size as needed */
    }
}

@media (max-width: 480px) {
    .logo {
        width: 100px; /* Further adjust for very small screens */
    }
}
