/* main.css */
body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #5fdfff, #fe7bbc);

}

.container {
    display: flex;
    height: 100%;
}

.text-area {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background-color: #f4f4f4;
    background: linear-gradient(to right, #5fdfff, #fe7bbc);
}

.menu {
    flex: 5;
    background-color: #ddd;
    background: linear-gradient(to right, #5fdfff, #fe7bbc);
    overflow-y: auto;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    padding: 20px;
}

.menu div {
    margin: 10px;
    cursor: pointer;
}

#workout-list {
    list-style-type: none;
    padding: 0;
}

#workout-list li {
    margin: 5px 0;
    padding: 10px;
    background-color: #ffffff;
    border: 1px solid #ccc;
    cursor: grab;
}

#image-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

#image-container img {
    width: 240px; /* 1.5 times the default width */
    height: 135px; /* 1.5 times the default height */
    object-fit: cover;
    border: 2px solid transparent;
}

#image-container img.size-1-5 {
    width: 240px; /* 1.5 times the default width */
    height: 135px; /* 1.5 times the default height */
}

#image-container img.size-1-75 {
    width: 280px; /* 1.75 times the default width */
    height: 157.5px; /* 1.75 times the default height */
}
#image-container img.size-2 {
    width: 320px; /* Default size 2 times */
    height: 180px;
    
}

#image-container img:hover {
    border-color: blue;
}

/* Add to your existing styles */

#workout-list li {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Align items to the left and buttons to the right */
    margin: 5px 0;
    padding: 10px;
    background-color: #ffffff;
    border: 1px solid #ccc;
}

#workout-list li button {
    margin-left: 10px; /* Add space between buttons */
}

#workout-list li span {
    flex-grow: 1; /* Make the text take up the available space */
    padding-right: 20px; /* Ensure there is space between the text and the buttons */
}


/* Styles for image size buttons */
.ImageSize-buttons button {
    padding: 10px 15px;
    margin-right: 5px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.ImageSize-buttons button:hover {
    background-color: #45a049;
}

/* Styles for category buttons */
.category-buttons button {
    padding: 8px 12px;
    background-color: #008CBA;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 5px; /* Adds margin around the buttons */
}

.category-buttons button:hover {
    background-color: #007B9E;
}

/* Style for the workout counter */
#workout-counter {
    padding: 10px;
    margin-top: 20px;
    background-color: #f2f2f2;
    border-radius: 5px;
    color: #333;
}

/* Styles for copy and clear list buttons */
#copy-list, #clear-list {
    padding: 10px 15px;
    background-color: #f44336;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px 5px; /* Space between and around buttons */
}

#copy-list:hover, #clear-list:hover {
    background-color: #d73727;
}

footer {
    text-align: center; /* Centers the text */
    margin-top: 20px; /* Adds some space above the footer */
    padding: 2px; /* Adds some padding inside the footer */
    max-width: 2700px;
    min-width: 320px;  
    
}

hr {
    margin-top: 4px; /* Adds some space above the line */
    margin-bottom: 4px; /* Adds some space below the line */
    border: #fe7bbc solid 1px; /* Adds a border around the line */
}
a {
    text-decoration: none; /* Removes the underline from links */
}

