/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body,
html {
    height: 100%;
    background-color: #f0f2f5;
}

.parent {
    display: grid;
    grid-template-columns: 250px auto;
    height: 100vh;
}

.child-1 {
    background-color: #1684c7;
    color: white;
    padding: 20px;
}

.child-1 h2 {
    margin-bottom: 30px;
}

.child-1 ul {
    list-style: none;
}

.child-1 ul li {
    margin-bottom: 20px;
}

.child-1 ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}


.child-2 {
    display: flex;
    flex-direction: column;
}


.child-2-1 {
    background-color: white;
    padding: 20px;
    border-bottom: 1px solid #ccc;
}


.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search input.search-bar {
    padding: 8px 12px;
    width: 500px;
    border: 1px solid #ccc;
    border-radius: 20px;
}

.user-info {
    display: flex;
    align-items: center;
}

.notification-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.profile-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-right: 10px;
}


.profile-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.pro {
    display: flex;
    align-items: center;
}

.profile-text h6 {
    font-size: 14px;
    color: #666;
}

.profile-text h2 {
    font-size: 18px;
}


.buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 8px 20px;
    border: none;
    background-color: #1da1f2;
    color: white;
    border-radius: 20px;
    cursor: pointer;
}

.btn:hover {
    background-color: #1684c7;
}

.child-2-2 {
    display: flex;
    padding: 20px;
    gap: 20px;
    overflow-y: auto;
}

.projects {
    flex: 2;
}

.projects h3 {
    margin-bottom: 10px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.card {
    background-color: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #f4c430;
}

.card h4 {
    margin-bottom: 10px;
}

.side {
    flex: 1;
}

.side h3 {
    margin-bottom: 10px;
}

.cardd {
    background-color: white;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.cardd h4 {
    margin-bottom: 5px;
}

.cardd p {
    font-size: 14px;
    color: #555;
}

.cardd hr {
    margin: 10px 0;
    border: none;
    border-top: 1px solid #ddd;
}

.card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.cardd:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
    transition: all 0.3s ease;
}