* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --theme-color: #f0804a;
    --accent-color: #f0804a;
    --button-hover-color: #353535;
    --button-hover-bg: #f39c12;
}

body {
    background-color: #f4f4f4;
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.card {
    width: 340px;
    background: linear-gradient(
        to bottom,
        var(--theme-color) 120px,
        #ffffff 120px
    );
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(50, 50, 50, 0.1);
    padding: 10px 0 10px;
    text-align: center;
    position: relative;
}

.card img.img2 {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto;
    border: 5px solid #fff;
    box-shadow: 0 0 0 5px var(--theme-color);
}



.card h4 {
    color: var(--theme-color);
    font-size: 22px;
    margin: 15px 0 5px 0;
}

.card h5 {
    color: #454545;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0px;
}



.description {
    color: #7a7a7a;
    font-size: 13px;
    font-weight: 400;
    padding: 0 20px;
}

.details {
    margin-top: 20px;
}

.details span {
    display: block;
    font-size: 14px;
    color: var(--theme-color);
    font-weight: 600;
    margin-top: 5px;
}

.buttons {
    margin-top: 25px;
}

.buttons button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background-color: transparent;
    color: var(--theme-color);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.buttons button:hover {
    background-color: var(--button-hover-bg);
    color: white;
}

.export-btn {
    margin-top: 20px;
    padding: 10px 20px;
	font-size: 14px;
    border: none;
    border-radius: 20px;
    background-color: var(--accent-color);
    color: white;
    cursor: pointer;
}

.edit-btn:hover, .export-btn:hover {
    background-color: var(--theme-color);
}

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

.modal-content {
    background-color: white;
    padding: 10px;
    border-radius: 10px;
    width: 300px;
    text-align: left;
}

.modal-content label {
    display: block;
    margin-top: 10px;
}

.modal-content input {
    width: 100%;
    padding: 5px;
    margin-top: 5px;
}

.modal-content button {
    margin-top: 20px;
    padding: 10px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.modal-content button:hover {
    background-color: var(--theme-color);
}
