.copy-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 12px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    cursor: pointer;
    background-color: #fff;
    transition: all 0.3s ease;
}

.copy-container:hover {
    border-color: #26adf8; /* Main purple color when hovered */
}

.copy-container span {
    margin: 0 5px;
}

#copy-text {
    color: #333;
    font-weight: bold;
}
.share-options a, .share-options button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0;
    padding: 10px 0px;
    text-decoration: none;
    color: #333;
    width: 100%; /* Adjust padding */
}

.share-options img.right-icon {
    margin: 0; /* Adjust as necessary */
}

.share-options span {
    flex-grow: 1; /* Ensure text spans the space between icons */
}
.share-panel {
    display: block; /* Always block but initially offscreen */
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease-in-out;
    transform: translateY(100%); /* Start hidden */
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

/* Add this class via JavaScript when the panel is active */
.active-panel {
    transform: translateY(0);
}

.share-panel-content {
    padding: 20px;
}

.share-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.close-button {
    font-size: 24px;
    cursor: pointer;
}

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    animation-name: animatetop;
    animation-duration: 0.4s;
}

/* Add animation */
@keyframes animatetop {
    from {top: -300px; opacity: 0}
    to {top: 0; opacity: 1}
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-button:hover,
.close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.close-button-app {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-button-app:hover,
.close-button-app:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
/* Style Settings */
body {
    font-family: "Roboto", sans-serif;
    margin: auto;
    padding: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    background-color: rgba(115, 95, 212, 0.1);
}
h1 {
    color: #ededed;
    font-size: 30px;
    font-weight: bold;
    font-family: monospace;
    letter-spacing: 7px;
    cursor: pointer;
    margin-top: 20px;
}

h1 span {
    transition: .5s linear
}
.website {
    color: black;
}

h1:hover span {
    color: Black;
    text-shadow:
            0 0 10px #fff,
            0 0 20px white,
            0 0 40px black;
}

a:hover  {
    color: #26adf8!important;
}
.website:hover  {
    color: #23acf8 !important;
}
.card {
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%; /* Kartların yüksekliğini eşit yapar */
}
body {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    font-family: Verdana, Tahoma, sans-serif;
    color: #fff;
    background: linear-gradient(-45deg, #000000, #1367ae, #012633, #009eff);
    background-size: 400% 400%;
    -webkit-animation: Gradient 15s ease infinite;
    -moz-animation: Gradient 15s ease infinite;
    animation: Gradient 15s ease infinite;
}

@-webkit-keyframes Gradient {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}

@-moz-keyframes Gradient {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}

@keyframes Gradient {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}

#myBtnHeader {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

header {
    width: 95%;
    max-width: 788px;
    display: flex;
    justify-content: flex-end;
    padding: 12px;
    margin-top: 15px;
}

.container {
    width: 91%;
    max-width: 680px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
a {
    text-decoration: none;
    color: white;
}
h1 {
    font-size: 20px;
    margin-bottom: 30px;
}

.image-container {
    height: 130px;
    width: 130px;
    border-radius: 150px;
    overflow: hidden;
}

.image-container img{
    height: 100%;
}
.myBtn svg {
    margin-left: 12px;
    margin-top: 10px;
    color: rgb(0,0,0);
}
/* Modal styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    border: 1px solid #888;
    width: 80%;
    max-width: 300px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

ul {
    list-style: none;
    padding: 0;
}
.copy-container {
    display: flex;
    width: 100%; /* Make sure it doesn't exceed the modal width */
    margin-bottom: 20px; /* Provide some space at the bottom */
}

ul li a {
    display: block;
    padding: 10px;
    margin: 10px 0;
    text-decoration: none;
    color: #333;

}

ul li a:hover {
    background-color: #e7e7e7;
}

/* Add your styles for the list icons here */
/* Container for the link and button */
.copy-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f9f9f9;
    border-radius: 15px;
    padding: 12px;
    margin-top: 20px; /* Adjust as per your spacing */
}

/* Style for the text input */
#myLink {
    border: none;
    padding: 8px;
    margin-right: 8px;
    border-radius: 22px;
    flex-grow: 1;
    font-size: 16px; /* Adjust size as needed */
    color: #333;
    background-color: #f7f7f7;
    max-width: calc(100% - 90px);
}

/* Removing the input field's focus outline */
#myLink:focus {
    outline: none;
}

/* Style for the copy button */
.copy-container button {
    padding: 8px 16px;
    border-radius: 22px;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    font-size: 10px; /* Adjust size as needed */
    background-color: #26adf8;
    color: white;
    transition: background-color 0.3s;
}

/* Hover effect for the button */
.copy-container button:hover {
    background-color: #6051c8;
}

.linktree-container {
    width: 100%;
    max-width: 600px;
    padding: 10px 0px;
}

.social-media {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff; /* White background for the cards */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 10px 10px;
    margin-bottom: 10px;
    transition: background-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.social-media:hover {
    background-color: #e9e5ff;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    transform: scale(1.05);
}

.link-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff; /* White background for the cards */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 10px 10px;
    margin-bottom: 10px;
    transition: background-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.link-card:hover {
    background-color: #b7dff8;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    transform: scale(1.05);
}

.link-icon img {
    width: 60px;
    height: 60px;
    border-radius: 10px; /* Makes the icon container rounded */
}

.link-share img {
    width: 30px;
    height: 30px;
}

.link-title {
    flex-grow: 1;
    text-align: center;
    color: #26adf8; /* Main purple color for the text */
    font-weight: 550; /* Slightly bolder font for better readability */
}



@media (max-width: 768px) {
    .linktree-container {
        width: 100%;
    }
}

